LInet::LInet
#include "ltwrappr.h"
L_VOID LInet::LInet(L_VOID)
Constructs and initializes the member variables of the LInet object.
Returns
None
Comments
LInet::LInet () is a constructor for the LInet 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
Functions: |
Example
//This will call the default constructor and destructor when it is out of scope
LInet Inet;
Inet.StartUp();
Inet.ServerInit(1000);
if (Inet.IsValid())
MessageBox(NULL, TEXT("Server successfully started"), TEXT(""), MB_OK);
// other operations
Inet.ShutDown();