Debugging Tools for Windows |
The OutputServers and OutputServersWide methods lists the servers running on a given computer.
HRESULT
IDebugClient::OutputServers(
IN ULONG OutputControl,
IN PCSTR Machine,
IN ULONG Flags
);
HRESULT
IDebugClient5::OutputServersWide(
IN ULONG OutputControl,
IN PCWSTR Machine,
IN ULONG Flags
);
#ifdef UNICODE
#define OutputServersT OutputServersWide
#else
#define OutputServersT OutputServers
#endif
Flag | Description |
---|---|
DEBUG_SERVERS_DEBUGGER | Output the debugging servers on the computer. |
DEBUG_SERVERS_PROCESS | Output the process servers on the computer. |
This method may also return error values. See Return Values for more details.
OutputServers is available in all versions of IDebugClient. OutputServersWide is available in IDebugClient5 and later versions.
For more information about remote debugging, see Remote Debugging.
Headers: Defined in dbgeng.h. Include dbgeng.h.
StartServer, DebugConnect, StartProcessServer, ConnectProcessServer