mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
19 lines
434 B
C
19 lines
434 B
C
|
/** @file
|
||
|
Header file that support Framework extensions to UEFI/PI for SMM modules.
|
||
|
|
||
|
This header file must include Framework extension definitions common to DXE
|
||
|
modules.
|
||
|
|
||
|
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef _FRAMEWORK_SMM_H_
|
||
|
#define _FRAMEWORK_SMM_H_
|
||
|
|
||
|
#include <FrameworkDxe.h>
|
||
|
#include <Framework/SmmCis.h>
|
||
|
|
||
|
#endif
|