mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
25 lines
621 B
C
25 lines
621 B
C
|
/** @file
|
||
|
Header file that support Framework extension to UEFI/PI for PEI modules.
|
||
|
|
||
|
This header file must include Framework extension definitions common to PEI
|
||
|
modules.
|
||
|
|
||
|
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef _FRAMEWORK_PEI_H_
|
||
|
#define _FRAMEWORK_PEI_H_
|
||
|
|
||
|
#include <PiPei.h>
|
||
|
|
||
|
#include <Framework/FirmwareVolumeImageFormat.h>
|
||
|
#include <Framework/FirmwareVolumeHeader.h>
|
||
|
#include <Framework/Hob.h>
|
||
|
#include <Framework/StatusCode.h>
|
||
|
#include <Framework/BootScript.h>
|
||
|
#include <Framework/PeiCis.h>
|
||
|
|
||
|
#endif
|