Last change
on this file since 77662 was 77662, checked in by vboxsync, 6 years ago |
EFI: First step in UDK2018 merge. Does not build yet.
|
-
Property svn:eol-style
set to
native
|
File size:
1.2 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | SMM End Of Dxe protocol introduced in the PI 1.2.1 specification.
|
---|
3 |
|
---|
4 | According to PI 1.4a specification, this protocol indicates end of the
|
---|
5 | execution phase when all of the components are under the authority of
|
---|
6 | the platform manufacturer.
|
---|
7 | This protocol is a mandatory protocol published by SMM Foundation code.
|
---|
8 | This protocol is an SMM counterpart of the End of DXE Event.
|
---|
9 | This protocol prorogates End of DXE notification into SMM environment.
|
---|
10 | This protocol is installed prior to installation of the SMM Ready to Lock Protocol.
|
---|
11 |
|
---|
12 | Copyright (c) 2012 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
13 | This program and the accompanying materials
|
---|
14 | are licensed and made available under the terms and conditions of the BSD License
|
---|
15 | which accompanies this distribution. The full text of the license may be found at
|
---|
16 | http://opensource.org/licenses/bsd-license.php
|
---|
17 |
|
---|
18 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
19 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
20 |
|
---|
21 | **/
|
---|
22 |
|
---|
23 | #ifndef _SMM_END_OF_DXE_H_
|
---|
24 | #define _SMM_END_OF_DXE_H_
|
---|
25 |
|
---|
26 | #include <Protocol/MmEndOfDxe.h>
|
---|
27 |
|
---|
28 | #define EFI_SMM_END_OF_DXE_PROTOCOL_GUID EFI_MM_END_OF_DXE_PROTOCOL_GUID
|
---|
29 |
|
---|
30 | extern EFI_GUID gEfiSmmEndOfDxeProtocolGuid;
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.