VerFindFileA method
Implementation
int VerFindFileA(
int uFlags,
ffi.Pointer<ffi.Int8> szFileName,
ffi.Pointer<ffi.Int8> szWinDir,
ffi.Pointer<ffi.Int8> szAppDir,
ffi.Pointer<ffi.Int8> szCurDir,
ffi.Pointer<ffi.Uint32> puCurDirLen,
ffi.Pointer<ffi.Int8> szDestDir,
ffi.Pointer<ffi.Uint32> puDestDirLen,
) {
return (_VerFindFileA ??= _dylib
.lookupFunction<_c_VerFindFileA, _dart_VerFindFileA>('VerFindFileA'))(
uFlags,
szFileName,
szWinDir,
szAppDir,
szCurDir,
puCurDirLen,
szDestDir,
puDestDirLen,
);
}