|
VOID CALLBACK
WhoisEventProc( |
|
HCLIENT hClient, |
|
|
UINT nEventId, |
|
|
DWORD dwError, |
|
|
DWORD_PTR dwParam |
|
); |
The WhoisEventProc 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 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 WhoisEventProc
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: cswhov11.lib
See Also
DisableEvents,
EnableEvents,
FreezeEvents,
RegisterEvent
|
|