dll: FspDebugLogSD

This commit is contained in:
Bill Zissimopoulos
2016-01-15 15:05:19 -08:00
parent 73ca6b30dc
commit 5a1384462b
3 changed files with 23 additions and 0 deletions

View File

@ -18,8 +18,11 @@
#if !defined(NDEBUG)
#define DEBUGLOG(fmt, ...) \
FspDebugLog("[U] " LIBRARY_NAME "!" __FUNCTION__ ": " fmt "\n", __VA_ARGS__)
#define DEBUGLOGSD(fmt, SD) \
FspDebugLogSD("[U] " LIBRARY_NAME "!" __FUNCTION__ ": " fmt "\n", SD)
#else
#define DEBUGLOG(fmt, ...) ((void)0)
#define DEBUGLOGSD(fmt, SD) ((void)0)
#endif
static inline PVOID MemAlloc(SIZE_T Size)