Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 937 Bytes

File metadata and controls

42 lines (28 loc) · 937 Bytes

Home

Function name : FindCloseChangeNotification

Group: File Management - Library: kernel32


Stops change notification handle monitoring.


Code examples:

Monitoring changes in a directory

Declaration:

BOOL FindCloseChangeNotification(
  HANDLE hChangeHandle   // handle to change notification
);  

FoxPro declaration:

DECLARE SHORT FindCloseChangeNotification IN kernel32;
	INTEGER hChangeHandle  

Parameters:

hChangeHandle [in] Handle to a change notification handle created by the FindFirstChangeNotification function.


Return value:

If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.