MCPcopy Create free account
hub / github.com/ariccio/altWinDirStat / vwdebug

Function vwdebug

Reference code/osImageTool/debug.cpp:55–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53 g_debugOutputFlags |= DBG_OUTPUTDEBUGSTRING ;
54}
55void vwdebug(const WCHAR *msg, va_list ap)
56{
57 WCHAR *wbuf= new WCHAR[MAX_DEBUG_LENGTH];
58 _vsnwprintf(wbuf, MAX_DEBUG_LENGTH, msg, ap);
59 if (g_debugOutputFlags&DBG_CHAROUTPUT) {
60 debug("%ls", wbuf);
61 }
62
63 delete[] wbuf;
64}
65void wdebug(const WCHAR *msg, ...)
66{
67 va_list ap;

Callers 1

wdebugFunction · 0.85

Calls 1

debugFunction · 0.85

Tested by

no test coverage detected