mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[FASTFAT]: Fix compilation under MSVC 2010 (1/2).
svn path=/trunk/; revision=74155
This commit is contained in:
parent
ed384844a1
commit
82ed3d127f
1 changed files with 8 additions and 8 deletions
|
@ -1010,17 +1010,17 @@ extern NTSTATUS FATGetNextDirEntry(PVOID *pContext, PVOID *pPage, PVFATFCB pDirF
|
|||
extern NTSTATUS FATXGetNextDirEntry(PVOID *pContext, PVOID *pPage, PVFATFCB pDirFcb, PVFAT_DIRENTRY_CONTEXT DirContext, BOOLEAN First);
|
||||
|
||||
VFAT_DISPATCH FatXDispatch = {
|
||||
.IsDirectoryEmpty = FATXIsDirectoryEmpty,
|
||||
.AddEntry = FATXAddEntry,
|
||||
.DelEntry = FATXDelEntry,
|
||||
.GetNextDirEntry = FATXGetNextDirEntry,
|
||||
FATXIsDirectoryEmpty, // .IsDirectoryEmpty
|
||||
FATXAddEntry, // .AddEntry
|
||||
FATXDelEntry, // .DelEntry
|
||||
FATXGetNextDirEntry, // .GetNextDirEntry
|
||||
};
|
||||
|
||||
VFAT_DISPATCH FatDispatch = {
|
||||
.IsDirectoryEmpty = FATIsDirectoryEmpty,
|
||||
.AddEntry = FATAddEntry,
|
||||
.DelEntry = FATDelEntry,
|
||||
.GetNextDirEntry = FATGetNextDirEntry,
|
||||
FATIsDirectoryEmpty, // .IsDirectoryEmpty
|
||||
FATAddEntry, // .AddEntry
|
||||
FATDelEntry, // .DelEntry
|
||||
FATGetNextDirEntry, // .GetNextDirEntry
|
||||
};
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue