[FASTFAT_NEW] Fix build

This commit is contained in:
Jérôme Gardou 2020-11-30 14:15:37 +01:00
parent ef4c7ae978
commit db34250b03
3 changed files with 16 additions and 6 deletions

View file

@ -271,10 +271,12 @@ FatLogOf(
#pragma alloc_text(PAGE, FatTruncateFileAllocation)
#endif
#ifdef __REACTOS__
static
#endif
INLINE
ULONG
FatSelectBestWindow(
FatSelectBestWindow(
IN PVCB Vcb
)
/*++

View file

@ -15,10 +15,6 @@ Abstract:
#include "fatprocs.h"
#ifdef __REACTOS__
#define _Unreferenced_parameter_
#endif
DRIVER_INITIALIZE DriverEntry;
NTSTATUS

View file

@ -51,6 +51,9 @@ Abstract:
#define FAT_FILL_FREE 0
#ifdef __REACTOS__
static
#endif
INLINE
PCCB
FatAllocateCcb (
@ -59,6 +62,9 @@ FatAllocateCcb (
return (PCCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(CCB), TAG_CCB );
}
#ifdef __REACTOS__
static
#endif
INLINE
VOID
FatFreeCcb (
@ -72,6 +78,9 @@ FatFreeCcb (
ExFreePool( Ccb );
}
#ifdef __REACTOS__
static
#endif
INLINE
PFCB
FatAllocateFcb (
@ -80,6 +89,9 @@ FatAllocateFcb (
return (PFCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(FCB), TAG_FCB );
}
#ifdef __REACTOS__
static
#endif
INLINE
VOID
FatFreeFcb (