1 /** @file
2   Definitions for FAT recovery PEIM API functions
3 
4 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
5 
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7 
8 **/
9 
10 #ifndef _FAT_API_H_
11 #define _FAT_API_H_
12 
13 //
14 // API data structures
15 //
16 typedef VOID  *PEI_FILE_HANDLE;
17 
18 typedef enum {
19   Fat12,
20   Fat16,
21   Fat32,
22   FatUnknown
23 } PEI_FAT_TYPE;
24 
25 #endif
26