LInet::GetHandle
#include "ltwrappr.h"
L_COMP LInet::*GetHandle(L_VOID)
Retrieves the internal LEAD computer handle for this LInet class object.
Returns
A pointer to a computer handle.
Comments
Use this function to retrieve the internal LEAD bitmap handle for this LInet class object.
Required DLLs and Libraries
|
LTNET For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
|
Elements |
Example
L_INT LInet__GetHandleExample()
{
LInet Inet;
LInet* plRemote;
plRemote = Inet.GetFirstItem();
if( *plRemote->GetHandle() == 35)
return FAILURE;
return SUCCESS;
}