Platform SDK: Debugging and Error Handling |
The OutputDebugString function sends a string to the debugger for display.
VOID OutputDebugString( LPCTSTR lpOutputString // string to be displayed );
This function does not return a value.
If the application has no debugger, the system debugger displays the string. If the application has no debugger and the system debugger is not active, OutputDebugString does nothing.
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in Winbase.h; include Windows.h.
Library: Use Kernel32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.