| |
| VOID CALLBACK
IcmpEventProc( |
| |
HCLIENT hClient, |
|
| |
UINT nEventId, |
|
| |
DWORD dwError, |
|
| |
DWORD_PTR dwParam |
|
| ); |
The IcmpEventProc function is an application-defined
callback function that processes events generated by the calling
process.
Parameters
- hClient
- The handle to the client session.
- nEvent
- An unsigned integer which specifies which event occurred. For a
complete list of events, refer to the IcmpRegisterEvent
function.
- 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 IcmpRegisterEvent function. The
IcmpEventProc 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 File: cstools11.h
Import Library: csicmv11.lib
See Also
IcmpDisableEvents,
IcmpEnableEvents,
IcmpFreezeEvents,
IcmpRegisterEvent
|
|