mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 04:53:31 +08:00
[NTOSKRNL] Fix MSVC build
This commit is contained in:
parent
4e34bf2a0b
commit
9a633f7b48
@ -475,9 +475,14 @@ ExpTagAllowPrint(CHAR Tag)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef KDBG
|
||||||
#define MiDumperPrint(dbg, fmt, ...) \
|
#define MiDumperPrint(dbg, fmt, ...) \
|
||||||
if (dbg) KdbpPrint(fmt, ##__VA_ARGS__); \
|
if (dbg) KdbpPrint(fmt, ##__VA_ARGS__); \
|
||||||
else DPRINT1(fmt, ##__VA_ARGS__)
|
else DPRINT1(fmt, ##__VA_ARGS__)
|
||||||
|
#else
|
||||||
|
#define MiDumperPrint(dbg, fmt, ...) \
|
||||||
|
DPRINT1(fmt, ##__VA_ARGS__)
|
||||||
|
#endif
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
MiDumpPoolConsumers(BOOLEAN CalledFromDbg, ULONG Tag, ULONG Mask)
|
MiDumpPoolConsumers(BOOLEAN CalledFromDbg, ULONG Tag, ULONG Mask)
|
||||||
|
Loading…
Reference in New Issue
Block a user