OUTPUT_DEBUG_STRING_INFO (Windows CE 5.0)

Send Feedback

This structure contains the address, format, and length, in bytes, of a debugging string.

typedef struct _OUTPUT_DEBUG_STRING_INFO { LPSTR lpDebugStringData; WORD fUnicode; WORD nDebugStringLength; } OUTPUT_DEBUG_STRING_INFO; 

Members

  • lpDebugStringData
    Pointer to the debugging string in the calling process's address space.

    The debugger can use the ReadProcessMemory function to retrieve the value of the string.

  • fUnicode
    Format of the debugging string.

    If this member is 0, the string is ASCII.

    If this member is nonzero, the string is Unicode.

  • nDebugStringLength
    Length, in bytes, of the debugging string.

    The length includes the string's terminating null character.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Winbase.h.

See Also

ReadProcessMemory | DEBUG_EVENT

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.