]> git.proxmox.com Git - mirror_edk2.git/blob - FatPkg/FatPei/FatLiteApi.h
Maintainers.txt: update mailing list information
[mirror_edk2.git] / FatPkg / FatPei / FatLiteApi.h
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