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