OutputDebugString function kernel32

void OutputDebugString(
  1. Pointer<Utf16> lpOutputString
)

Sends a string to the debugger for display.

void OutputDebugStringW(
  LPCWSTR lpOutputString
);

Implementation

void OutputDebugString(Pointer<Utf16> lpOutputString) =>
    _OutputDebugString(lpOutputString);