Debugging Tools for Windows |
The CreateClient method creates a new client object for the current thread.
HRESULT
IDebugClient::CreateClient(
OUT IDebugClient * * Client
);
This method may also return error values. See Return Values for more details.
CreateClient is available in all versions of IDebugClient.
This method creates a client that may be used in the current thread.
Clients are specific to the thread that created them. Calls from other threads fail immediately. The CreateClient method is a notable exception; it allows creation of a new client for a new thread.
All callbacks for a client are made in the thread with which the client was created.
For more information about client objects and how they are used in the debugger engine, see Client Objects.
Headers: Defined in dbgeng.h. Include dbgeng.h.