2009-07-08 06:40:59 +02:00
|
|
|
/** @file
|
|
|
|
The root header file that provides Framework extension to UEFI/PI for modules. It can be included by
|
2010-03-16 02:53:11 +01:00
|
|
|
DXE, RUNTIME and SMM type modules that use Framework definitions.
|
2009-07-08 06:40:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
This header file includes Framework extension definitions common to DXE
|
|
|
|
modules.
|
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved<BR>
|
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
|
|
|
The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2009-07-08 06:40:59 +02:00
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _FRAMEWORK_DXE_H_
|
|
|
|
#define _FRAMEWORK_DXE_H_
|
|
|
|
|
2009-07-10 11:30:53 +02:00
|
|
|
#include <PiDxe.h>
|
2009-07-08 06:40:59 +02:00
|
|
|
|
|
|
|
#include <Framework/FrameworkInternalFormRepresentation.h>
|
2009-07-10 11:30:53 +02:00
|
|
|
#include <Framework/FirmwareVolumeImageFormat.h>
|
|
|
|
#include <Framework/FirmwareVolumeHeader.h>
|
|
|
|
#include <Framework/Hob.h>
|
2009-07-12 01:25:44 +02:00
|
|
|
#include <Framework/BootScript.h>
|
2009-07-10 11:30:53 +02:00
|
|
|
#include <Framework/StatusCode.h>
|
|
|
|
#include <Framework/DxeCis.h>
|
2009-07-08 06:40:59 +02:00
|
|
|
|
|
|
|
#endif
|