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
|
|
|
|
DXE, RUNTIME and SMM type modules which uses Framework definitions.
|
|
|
|
|
|
|
|
|
|
|
|
This header file includes Framework extension definitions common to DXE
|
|
|
|
modules.
|
|
|
|
|
|
|
|
Copyright (c) 2007 - 2009, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#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
|