mirror of https://github.com/acidanthera/audk.git
26 lines
391 B
C
26 lines
391 B
C
/** @file
|
|
Definitions for FAT recovery PEIM API functions
|
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _FAT_API_H_
|
|
#define _FAT_API_H_
|
|
|
|
//
|
|
// API data structures
|
|
//
|
|
typedef VOID *PEI_FILE_HANDLE;
|
|
|
|
typedef enum {
|
|
Fat12,
|
|
Fat16,
|
|
Fat32,
|
|
FatUnknown
|
|
} PEI_FAT_TYPE;
|
|
|
|
#endif
|