OutputDebugString

The function OutputDebugString sends a string to the debugger for display.

Syntax

void WINAPI OutputDebugString(
    LPCTSTR lpOutputString,
);

Parameters

lpOutputString (in, optional)

The null-terminated string to be displayed.

Return Values

This function does not return a value.

Remarks

If the application is not under RTX Visual Studio Debugger, OutputDebugString does nothing.

OutputDebugStringW converts the specified string based on the current system locale information and passes it to OutputDebugStringA to be displayed. As a result, some Unicode characters may not be displayed correctly.

Requirements

Library Rtx_Rtss.lib

See Also:

Debugging Functions

IntervalZero.com | Support | Give Feedback