mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-13 10:04:04 +01:00
f148eed2c9
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
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
|