1 | /** @file
|
---|
2 | EDKII SMM Legacy Boot protocol.
|
---|
3 |
|
---|
4 | This SMM protocol is to be published by the SMM Foundation code to associate
|
---|
5 | with EFI_EVENT_LEGACY_BOOT_GUID to notify SMM driver that system enter legacy boot.
|
---|
6 |
|
---|
7 | Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
---|
8 | This program and the accompanying materials
|
---|
9 | are licensed and made available under the terms and conditions of the BSD License
|
---|
10 | which accompanies this distribution. The full text of the license may be found at
|
---|
11 | http://opensource.org/licenses/bsd-license.php
|
---|
12 |
|
---|
13 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
14 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
15 |
|
---|
16 | **/
|
---|
17 |
|
---|
18 | #ifndef _SMM_LEGACY_BOOT_H_
|
---|
19 | #define _SMM_LEGACY_BOOT_H_
|
---|
20 |
|
---|
21 | #define EDKII_SMM_LEGACY_BOOT_PROTOCOL_GUID \
|
---|
22 | { \
|
---|
23 | 0x85a8ab57, 0x644, 0x4110, { 0x85, 0xf, 0x98, 0x13, 0x22, 0x4, 0x70, 0x70 } \
|
---|
24 | }
|
---|
25 |
|
---|
26 | extern EFI_GUID gEdkiiSmmLegacyBootProtocolGuid;
|
---|
27 |
|
---|
28 | #endif
|
---|