Home | History | Annotate | Download | only in FatPei
      1 /** @file
      2   Definitions for FAT recovery PEIM API functions
      3 
      4 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
      5 
      6 This program and the accompanying materials are licensed and made available
      7 under the terms and conditions of the BSD License which accompanies this
      8 distribution. The full text of the license may be found at
      9 http://opensource.org/licenses/bsd-license.php
     10 
     11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 
     14 **/
     15 
     16 #ifndef _FAT_API_H_
     17 #define _FAT_API_H_
     18 
     19 //
     20 // API data structures
     21 //
     22 typedef VOID  *PEI_FILE_HANDLE;
     23 
     24 typedef enum {
     25   Fat12,
     26   Fat16,
     27   Fat32,
     28   FatUnknown
     29 } PEI_FAT_TYPE;
     30 
     31 #endif
     32