MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / OutputDebugStringFormat

Function OutputDebugStringFormat

source/util.cpp:3206–3214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3204
3205#if defined(_MSC_VER) && defined(_DEBUG)
3206void OutputDebugStringFormat(LPCTSTR fmt, ...)
3207{
3208 CString sMsg;
3209 va_list ap;
3210
3211 va_start(ap, fmt);
3212 sMsg.FormatV(fmt, ap);
3213 OutputDebugString(sMsg);
3214}
3215#endif

Callers

nothing calls this directly

Calls 1

FormatVMethod · 0.45

Tested by

no test coverage detected