mirror of
https://github.com/rbmm/INJECT
synced 2026-06-08 17:02:59 +00:00
11 lines
188 B
C++
11 lines
188 B
C++
#pragma once
|
|
|
|
namespace Log {
|
|
NTSTATUS Init();
|
|
NTSTATUS Close();
|
|
void write(LPCVOID data, DWORD cb);
|
|
void printf(PCSTR format, ...);
|
|
NTSTATUS Flush();
|
|
};
|
|
|
|
#define DbgPrint Log::printf |