| |
| VOID CALLBACK
InetEventProc( |
| |
SOCKET hSocket, |
|
| |
UINT nEvent, |
|
| |
DWORD dwError, |
|
| |
DWORD_PTR dwParam |
|
| ); |
The EventProc function is an application-defined callback
function that processes events generated by the calling process.
Parameters
- hSocket
- The socket handle.
- nEvent
- An unsigned integer which specifies which event occurred. For a
complete list of events, refer to the RegisterEvent method.
- dwError
- An unsigned integer which specifies any error that
occurred. If no error occurred, then this parameter will be zero.
- dwParam
- A user-defined integer value which was specified when the event
callback was registered.
Return Value
None.
Remarks
An application must register this callback function by passing its
address to the RegisterEvent method. The InetEventProc
function is a placeholder for the application-defined function
name.
Requirements
Minimum Desktop Platform: Windows 7 (Service Pack 1)
Minimum Server Platform: Windows Server 2008 R2 (Service Pack 1)
Header: Include cswsock10.h
Import Library: cswskv10.lib
See Also
DisableEvents,
EnableEvents,
FreezeEvents
|
|