1
0
mirror of https://github.com/winfsp/winfsp.git synced 2026-01-04 10:19:18 -06:00

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)