FindFirstFileNameW method
Implementation
ffi.Pointer<ffi.Void> FindFirstFileNameW(
ffi.Pointer<ffi.Uint16> lpFileName,
int dwFlags,
ffi.Pointer<ffi.Uint64> StringLength,
ffi.Pointer<ffi.Uint16> LinkName,
) {
return (_FindFirstFileNameW ??=
_dylib.lookupFunction<_c_FindFirstFileNameW, _dart_FindFirstFileNameW>(
'FindFirstFileNameW'))(
lpFileName,
dwFlags,
StringLength,
LinkName,
);
}