MCPcopy Create free account
hub / github.com/Windscribe/Desktop-App / debugMessage

Function debugMessage

libs/wssecure/dllmain.cpp:6–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include <tchar.h>
5
6static 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
18static void OnlyLoadMSSignedBinaries()
19{

Callers 1

OnlyLoadMSSignedBinariesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected