keygendr32/Keygender32/Debug.h

9 lines
221 B
C
Raw Normal View History

2024-03-21 06:09:10 +00:00
#pragma once
#ifdef _DEBUG
#define _AsStr(x) #x
#define DebugPrintf(x, ...) _DebugPrintf(_T(__FUNCTION__) _T(": ") _T(x), __VA_ARGS__)
void _DebugPrintf(LPCTSTR fmt, ...);
#else
#define DebugPrintf(x, ...)
#endif