mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[FASTFAT_NEW] Fix build with FASTFATDBG set
This commit is contained in:
parent
09c06a2f45
commit
f15769d958
3 changed files with 9 additions and 1 deletions
|
@ -1991,7 +1991,11 @@ Return Value:
|
|||
ULONG ByteOffset;
|
||||
PDIRENT Dirent;
|
||||
|
||||
#ifndef __REACTOS__
|
||||
BOOLEAN IsDirectoryEmpty;
|
||||
#else
|
||||
BOOLEAN IsDirectoryEmpty = FALSE;
|
||||
#endif
|
||||
|
||||
NTSTATUS Status;
|
||||
|
||||
|
|
|
@ -243,7 +243,7 @@ extern LONG FatDebugTraceIndent;
|
|||
}
|
||||
|
||||
#define DebugUnwind(X) { \
|
||||
if (AbnormalTermination()) { \
|
||||
if (_SEH2_AbnormalTermination()) { \
|
||||
DebugTrace(0, DEBUG_TRACE_UNWIND, #X ", Abnormal termination.\n", 0); \
|
||||
} \
|
||||
}
|
||||
|
|
|
@ -22,6 +22,10 @@ Abstract:
|
|||
|
||||
#define BugCheckFileId (FAT_BUG_CHECK_PNP)
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define Dbg (DEBUG_TRACE_PNP)
|
||||
#endif
|
||||
|
||||
NTSTATUS
|
||||
FatPnpQueryRemove (
|
||||
PIRP_CONTEXT IrpContext,
|
||||
|
|
Loading…
Reference in a new issue