| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected