| Debugging Tools for Windows | 
The OutputIdentity and OutputIdentityWide methods format and output a string describing the computer and user this client represents.
HRESULT
  IDebugClient::OutputIdentity(
    IN ULONG  OutputControl,
    IN ULONG  Flags,
    IN PCSTR  Format
    );
HRESULT
  IDebugClient5::OutputIdentityWide(
    IN ULONG  OutputControl,
    IN ULONG  Flags,
    IN PCWSTR  Format
    );
#ifdef UNICODE
#define OutputIdentityT OutputIdentityWide
#else
#define OutputIdentityT OutputIdentity
#endif
This method may also return error values. See Return Values for more details.
OutputIdentity is available in all versions of IDebugClient. OutputIdentityWide is available in IDebugClient5 and later versions.
The specific content of the string varies with the operating system. If the client is remotely connected, some network information may also be present.
For more information about client objects, see Client Objects.
Headers: Defined in dbgeng.h. Include dbgeng.h.