FindNextChangeNotification function Null safety kernel32
- int hChangeHandle
Requests that the operating system signal a change notification handle the next time it detects an appropriate change.
BOOL FindNextChangeNotification(
HANDLE hChangeHandle
);
Implementation
int FindNextChangeNotification(int hChangeHandle) {
final _FindNextChangeNotification = _kernel32.lookupFunction<
Int32 Function(IntPtr hChangeHandle),
int Function(int hChangeHandle)>('FindNextChangeNotification');
return _FindNextChangeNotification(hChangeHandle);
}