mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[EVTLIB] Fix EVTLTRACE(1) macro expansion in MSVC builds
This commit is contained in:
@@ -16,9 +16,9 @@
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
#define EVTLTRACE(...) DPRINT("EvtLib: " __VA_ARGS__)
|
||||
#define EVTLTRACE(fmt, ...) DPRINT("EvtLib: " fmt, ##__VA_ARGS__)
|
||||
// Once things become stabilized enough, replace all the EVTLTRACE1 by EVTLTRACE
|
||||
#define EVTLTRACE1(...) DPRINT1("EvtLib: " __VA_ARGS__)
|
||||
#define EVTLTRACE1(fmt, ...) DPRINT1("EvtLib: " fmt, ##__VA_ARGS__)
|
||||
|
||||
|
||||
/* GLOBALS *******************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user