a macro that outputs the message to the Debug console if a debug build
| 56 | |
| 57 | // a macro that outputs the message to the Debug console if a debug build |
| 58 | void 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 | |
| 69 | EASYHOOK_NT_INTERNAL CompleteUnmanagedInjection(LPREMOTE_INFO InInfo) |
| 70 | { |
no outgoing calls
no test coverage detected