|
VOID CALLBACK
SshEventProc( |
|
HCLIENT hClient, |
|
|
UINT nEvent, |
|
|
DWORD dwError, |
|
|
DWORD_PTR dwParam |
|
); |
The EventProc function is an application-defined callback
function that processes events generated by the client.
Parameters
- hClient
- 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 SshEventProc
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: cstshv11.lib
See Also
DisableEvents,
EnableEvents,
FreezeEvents,
RegisterEvent
|
|