MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / Log

Function Log

KernelLibrary/Logging.cpp:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <stdarg.h>
4
5ULONG Log(LogLevel level, PCSTR format, ...) {
6 va_list list;
7 va_start(list, format);
8 return vDbgPrintExWithPrefix(DRIVER_PREFIX, DPFLTR_IHVDRIVER_ID, static_cast<ULONG>(level), format, list);
9}
10
11ULONG LogError(PCSTR format, ...) {
12 va_list list;

Callers 2

DriverEntryFunction · 0.85
AntiRootkitCreateCloseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected