###User Defined Function###
_WinAPI_FindNextChangeNotification

###Description###
Requests that the operating system signal a change notification handle the next time it detects an appropriate change.

###Syntax###
#include <WinAPIFiles.au3>
_WinAPI_FindNextChangeNotification ( $hChange )


###Parameters###
@@ParamTable@@
$hChange
	A handle to a change notification handle created by the <a href="_WinAPI_FindFirstChangeNotification.htm">_WinAPI_FindFirstChangeNotification()</a> function.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	True.
Failure 	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
After the <a href="_WinAPI_FindNextChangeNotification.htm">_WinAPI_FindNextChangeNotification()</a> function returns successfully, the application can wait for notification that a change has occurred by using the _WinAPI_Wait... functions.

The <a href="_WinAPI_FindNextChangeNotification.htm">_WinAPI_FindNextChangeNotification()</a> function should not be used more than once on the same handle without using one of the wait functions.
An application may miss a change notification if it uses <a href="_WinAPI_FindNextChangeNotification.htm">_WinAPI_FindNextChangeNotification()</a> when there is a change request outstanding.


###Related###
_WinAPI_FindFirstChangeNotification


###See Also###
@@MsdnLink@@ FindNextChangeNotification


###Example###
@@IncludeExample@@
