MCPcopy Create free account
hub / github.com/bbbradsmith/nsfplay / printf

Method printf

xgm/debugout.h:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14 {
15 public:
16 static void printf (const char *format, ...)
17 {
18 static char buf[1024];
19 va_list argl;
20
21 va_start (argl, format);
22 _vsnprintf (buf, 1024, format, argl);
23 OutputDebugString (buf);
24 va_end (argl);
25 }
26 };
27#define DEBUG_OUT __DebugOut::printf
28

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected