Skip to content

Instantly share code, notes, and snippets.

@zhmxx
zhmxx / FormattedOutputDebugString.cpp
Created September 10, 2020 01:46
Formatted OutputDebugString (Windows, Win32)
void DebugOut(wchar_t *fmt, ...)
{
va_list argp;
va_start(argp, fmt);
wchar_t dbg_out[4096];
vswprintf_s(dbg_out, fmt, argp);
va_end(argp);
OutputDebugString(dbg_out);
}