MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / DEBUGOUT

Function DEBUGOUT

third-party/EasyHook/EasyHookDll/RemoteHook/entry.cpp:58–67  ·  view source on GitHub ↗

a macro that outputs the message to the Debug console if a debug build

Source from the content-addressed store, hash-verified

56
57// a macro that outputs the message to the Debug console if a debug build
58void DEBUGOUT(const char * fmt, ...)
59{
60#if _DEBUG
61 va_list ap;
62 va_start(ap, fmt);
63 ATLTRACE2(fmt, ap);
64 ATLTRACE("\n");
65 va_end(ap);
66#endif
67}
68
69EASYHOOK_NT_INTERNAL CompleteUnmanagedInjection(LPREMOTE_INFO InInfo)
70{

Callers 1

CompleteManagedInjectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected