FindFirstChangeNotificationW method
Implementation
ffi.Pointer<ffi.Void> FindFirstChangeNotificationW(
ffi.Pointer<ffi.Uint16> lpPathName,
int bWatchSubtree,
int dwNotifyFilter,
) {
return (_FindFirstChangeNotificationW ??= _dylib.lookupFunction<
_c_FindFirstChangeNotificationW,
_dart_FindFirstChangeNotificationW>('FindFirstChangeNotificationW'))(
lpPathName,
bWatchSubtree,
dwNotifyFilter,
);
}