mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
8 lines
257 B
C
8 lines
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__)
|