mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
4c37757e81
CORE-15841
11 lines
503 B
C
11 lines
503 B
C
#pragma once
|
|
|
|
extern int virtioDebugLevel;
|
|
extern int bDebugPrint;
|
|
typedef void (*tDebugPrintFunc)(const char *format, ...);
|
|
extern tDebugPrintFunc VirtioDebugPrintProc;
|
|
|
|
#define DPrintf(Level, MSG, ...) if ((!bDebugPrint) || Level > virtioDebugLevel) {} else VirtioDebugPrintProc(MSG, __VA_ARGS__)
|
|
|
|
#define DEBUG_ENTRY(level) DPrintf(level, "[%s]=>\n", __FUNCTION__)
|
|
#define DEBUG_EXIT_STATUS(level, status) DPrintf((status == NDIS_STATUS_SUCCESS ? level : 0), "[%s]<=0x%X\n", __FUNCTION__, (status))
|