FindFirstChangeNotificationA method

Pointer<Void> FindFirstChangeNotificationA(
  1. Pointer<Int8> lpPathName,
  2. int bWatchSubtree,
  3. int dwNotifyFilter
)

Implementation

ffi.Pointer<ffi.Void> FindFirstChangeNotificationA(
  ffi.Pointer<ffi.Int8> lpPathName,
  int bWatchSubtree,
  int dwNotifyFilter,
) {
  return (_FindFirstChangeNotificationA ??= _dylib.lookupFunction<
      _c_FindFirstChangeNotificationA,
      _dart_FindFirstChangeNotificationA>('FindFirstChangeNotificationA'))(
    lpPathName,
    bWatchSubtree,
    dwNotifyFilter,
  );
}