| Debugging Tools for Windows | 
The GetEventIndexDescription and GetEventIndexDescriptionWide methods describe the specified event in a static list of events for the current target.
HRESULT
  IDebugControl3::GetEventIndexDescription(
    IN ULONG  Index,
    IN ULONG  Which,
    IN OPTIONAL PSTR  Buffer,
    IN ULONG  BufferSize,
    OUT OPTIONAL PULONG  DescSize
    );
HRESULT
  IDebugControl3::GetEventIndexDescriptionWide(
    IN ULONG  Index,
    IN ULONG  Which,
    IN OPTIONAL PWSTR  Buffer,
    IN ULONG  BufferSize,
    OUT OPTIONAL PULONG  DescSize
    );
#ifdef UNICODE
#define GetEventIndexDescriptionT GetEventIndexDescriptionWide
#else
#define GetEventIndexDescriptionT GetEventIndexDescription
#endif
This method may also return error values. See Return Values for more details.
GetEventIndexDescription is available in IDebugControl3 and later versions.
The amount of descriptive information available for a particular target varies depending on the type of the target.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.