diff options
Diffstat (limited to 'FatPkg/EnhancedFatDxe/Fat.h')
-rw-r--r-- | FatPkg/EnhancedFatDxe/Fat.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/FatPkg/EnhancedFatDxe/Fat.h b/FatPkg/EnhancedFatDxe/Fat.h index fb6699061e..525393dbd4 100644 --- a/FatPkg/EnhancedFatDxe/Fat.h +++ b/FatPkg/EnhancedFatDxe/Fat.h @@ -975,6 +975,22 @@ FatComputeFreeInfo ( IN FAT_VOLUME *Volume
);
+/**
+
+ Get the FAT entry value of the volume, which is identified with the Index.
+
+ @param Volume - FAT file system volume.
+ @param Index - The index of the FAT entry of the volume.
+
+ @return The value of the FAT entry.
+
+**/
+UINTN
+FatGetFatEntry (
+ IN FAT_VOLUME *Volume,
+ IN UINTN Index
+ );
+
//
// Init.c
//
|