Windows2003-3790/drivers/filters/beep/dbg.h
2020-09-30 16:53:55 +02:00

17 lines
237 B
C

#define BEEP_TAG 0x50454542 /* "BEEP" */
#if DBG
VOID
BeepDebugPrint(
ULONG DebugPrintLevel,
PCCHAR DebugMessage,
...
);
#define BeepPrint(x) BeepDebugPrint x
#else
#define BeepPrint(x)
#endif