The etnEnableInput function enables or disables mouse and keyboard input to the
specified session window. When input is disabled, the window does not receive
input such as mouse clicks and key presses. When input is enabled, the window
receives all input.
|
BOOL WINAPI etnEnableInput( HWND hSession, BOOL bEnable ); |
The etnIsSession function determines whether the specified window handle
identifies an existing session window.
|
BOOL WINAPI etnIsSession( HWND hSession ); |
The etnObtainHandle function returns a handle to an existing TelNet98 session.
|
HWND WINAPI etnObtainHandle( LPCTSTR lpSessionName, DWORD dwMilliseconds ); |
The etnReceiveData function reads data from a running TelNet98 session.
|
BOOL WINAPI etnReceiveData( HWND hSession, LPBYTE lpData, LPDWORD lpcbData, DWORD dwMilliseconds ); |
The etnRegisterCallback function associates a function that the session calls
asynchronously to notify the application, whenever the session receives incoming
data.
|
BOOL WINAPI etnRegisterCallback( HWND hSession, ETNDATAPROC lpDataProc ); |
|
The etnReleaseHandle function releases a session handle.
|
BOOL WINAPI etnReleaseHandle( HWND hSession ); |
The etnSendData function sends data to the specified session.
|
BOOL WINAPI etnSendData( HWND hSession, LPBYTE lpData, DWORD cbData ); |
The etnSetDelay function adjusts the time interval, for which the session is
suspended after a call to the etnReceiveData function.
|
VOID WINAPI etnSetDelay( DWORD dwMilliseconds ); |