|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
OUTPUT_DEBUG_STRING_INFO
The OUTPUT_DEBUG_STRING_INFO structure contains the address, format, and length, in bytes, of a debugging
string.
typedef struct _OUTPUT_DEBUG_STRING_INFO { // odsi
LPSTR lpDebugStringData;
WORD fUnicode;
WORD nDebugStringLength;
} OUTPUT_DEBUG_STRING_INFO;
Members
lpDebugStringData
Points to the address of 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
Specifies the format of the debugging string. If this member is zero, the
debugging string is 8-bit ASCII; if it is nonzero, the string is 16-bit Unicode™.
nDebugStringLength
Specifies the length, in bytes, of the debugging string. The length includes
the string's terminating null character.
See Also
DEBUG_EVENT, ReadProcessMemory
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|