FindFirstChangeNotificationW method

Pointer<Void> FindFirstChangeNotificationW(
  1. Pointer<Uint16> lpPathName,
  2. int bWatchSubtree,
  3. int dwNotifyFilter
)

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,
  );
}