Group: File Management - Library: kernel32
Requests that the operating system signal a change notification handle the next time it detects an appropriate change.
Monitoring changes in a directory
BOOL FindNextChangeNotification(
HANDLE hChangeHandle // handle to change notification
);
DECLARE SHORT FindNextChangeNotification IN kernel32;
INTEGER hChangeHandle
hChangeHandle [in] Handle to a change notification handle created by the FindFirstChangeNotification function.
If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.
FindNextChangeNotification should not be used more than once on the same handle without using one of the wait functions. When hChangeHandle is no longer needed, close it by using the FindCloseChangeNotification function.