OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Using TSocketManager

TSocketManager is the core of OWL's WinSock encapsulation.

It initializes and deinitializes the WinSock DLL. You must create an instance of this class to work with WinSock. The lifetime of this object determines when you can communicate with WinSock. You create an instance of TSocketManager by:

TSocketManager* manager = new TSocketManager;

When you're done, use:

delete manager;