| 4 | #include <tchar.h> |
| 5 | |
| 6 | static void debugMessage(LPCTSTR szFormat, ...) |
| 7 | { |
| 8 | va_list arg_list; |
| 9 | va_start(arg_list, szFormat); |
| 10 | |
| 11 | TCHAR Buf[1024]; |
| 12 | _vsntprintf_s(Buf, 1024, _TRUNCATE, szFormat, arg_list); |
| 13 | va_end(arg_list); |
| 14 | |
| 15 | ::OutputDebugString(Buf); |
| 16 | } |
| 17 | |
| 18 | static void OnlyLoadMSSignedBinaries() |
| 19 | { |
no outgoing calls
no test coverage detected