mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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;
|
ULONG ByteOffset;
|
||||||
PDIRENT Dirent;
|
PDIRENT Dirent;
|
||||||
|
|
||||||
|
#ifndef __REACTOS__
|
||||||
BOOLEAN IsDirectoryEmpty;
|
BOOLEAN IsDirectoryEmpty;
|
||||||
|
#else
|
||||||
|
BOOLEAN IsDirectoryEmpty = FALSE;
|
||||||
|
#endif
|
||||||
|
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,7 @@ extern LONG FatDebugTraceIndent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DebugUnwind(X) { \
|
#define DebugUnwind(X) { \
|
||||||
if (AbnormalTermination()) { \
|
if (_SEH2_AbnormalTermination()) { \
|
||||||
DebugTrace(0, DEBUG_TRACE_UNWIND, #X ", Abnormal termination.\n", 0); \
|
DebugTrace(0, DEBUG_TRACE_UNWIND, #X ", Abnormal termination.\n", 0); \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,10 @@ Abstract:
|
||||||
|
|
||||||
#define BugCheckFileId (FAT_BUG_CHECK_PNP)
|
#define BugCheckFileId (FAT_BUG_CHECK_PNP)
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
#define Dbg (DEBUG_TRACE_PNP)
|
||||||
|
#endif
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
FatPnpQueryRemove (
|
FatPnpQueryRemove (
|
||||||
PIRP_CONTEXT IrpContext,
|
PIRP_CONTEXT IrpContext,
|
||||||
|
|
Loading…
Reference in a new issue