Syntax |
BOOL FindNextSocketChangeNotification ( HANDLE changeHandle); |
Description |
This function prepares to receive the next socket change notification. |
Comments |
The changeHandle input argument is the handle returned by the FindFirstSocketChangeNotification function. There are no output arguments. This function returns TRUE if successful, or FALSE on failure. |
Example
HANDLE dwChangeHandle;
if(FindNextSocketChangeNotification(dwChangeHandle)==FALSE)
{
FindCloseSocketChangeNotification(dwChangeHandle);
return 0;
}
Socket Status API functions. |