mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[FASTFAT_NEW] Fix build
This commit is contained in:
parent
ef4c7ae978
commit
db34250b03
3 changed files with 16 additions and 6 deletions
|
@ -271,7 +271,9 @@ FatLogOf(
|
||||||
#pragma alloc_text(PAGE, FatTruncateFileAllocation)
|
#pragma alloc_text(PAGE, FatTruncateFileAllocation)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
static
|
||||||
|
#endif
|
||||||
INLINE
|
INLINE
|
||||||
ULONG
|
ULONG
|
||||||
FatSelectBestWindow(
|
FatSelectBestWindow(
|
||||||
|
|
|
@ -15,10 +15,6 @@ Abstract:
|
||||||
|
|
||||||
#include "fatprocs.h"
|
#include "fatprocs.h"
|
||||||
|
|
||||||
#ifdef __REACTOS__
|
|
||||||
#define _Unreferenced_parameter_
|
|
||||||
#endif
|
|
||||||
|
|
||||||
DRIVER_INITIALIZE DriverEntry;
|
DRIVER_INITIALIZE DriverEntry;
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
|
@ -51,6 +51,9 @@ Abstract:
|
||||||
|
|
||||||
#define FAT_FILL_FREE 0
|
#define FAT_FILL_FREE 0
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
static
|
||||||
|
#endif
|
||||||
INLINE
|
INLINE
|
||||||
PCCB
|
PCCB
|
||||||
FatAllocateCcb (
|
FatAllocateCcb (
|
||||||
|
@ -59,6 +62,9 @@ FatAllocateCcb (
|
||||||
return (PCCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(CCB), TAG_CCB );
|
return (PCCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(CCB), TAG_CCB );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
static
|
||||||
|
#endif
|
||||||
INLINE
|
INLINE
|
||||||
VOID
|
VOID
|
||||||
FatFreeCcb (
|
FatFreeCcb (
|
||||||
|
@ -72,6 +78,9 @@ FatFreeCcb (
|
||||||
ExFreePool( Ccb );
|
ExFreePool( Ccb );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
static
|
||||||
|
#endif
|
||||||
INLINE
|
INLINE
|
||||||
PFCB
|
PFCB
|
||||||
FatAllocateFcb (
|
FatAllocateFcb (
|
||||||
|
@ -80,6 +89,9 @@ FatAllocateFcb (
|
||||||
return (PFCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(FCB), TAG_FCB );
|
return (PFCB) FsRtlAllocatePoolWithTag( PagedPool, sizeof(FCB), TAG_FCB );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
static
|
||||||
|
#endif
|
||||||
INLINE
|
INLINE
|
||||||
VOID
|
VOID
|
||||||
FatFreeFcb (
|
FatFreeFcb (
|
||||||
|
|
Loading…
Reference in a new issue