mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 13:07:54 +00:00
8 lines
No EOL
257 B
C
8 lines
No EOL
257 B
C
#pragma once
|
|
|
|
#include <Windows.h>
|
|
#include <tchar.h>
|
|
|
|
VOID _DBGPRINT(PCSTR kszFunction, INT iLineNumber, LPCSTR kszDebugFormatString, ...);
|
|
#define DBGPRINT(kszDebugFormatString, ...) \
|
|
_DBGPRINT(__FUNCTION__, __LINE__, kszDebugFormatString, __VA_ARGS__) |