1 | /** @file
|
---|
2 | GUID used as an FV filename for A Priori file. The A Priori file contains a
|
---|
3 | list of FV filenames that the DXE dispatcher will schedule reguardless of
|
---|
4 | the dependency grammar.
|
---|
5 |
|
---|
6 | Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 |
|
---|
9 | @par Revision Reference:
|
---|
10 | GUID introduced in PI Version 1.0.
|
---|
11 |
|
---|
12 | **/
|
---|
13 |
|
---|
14 | #ifndef __APRIORI_GUID_H__
|
---|
15 | #define __APRIORI_GUID_H__
|
---|
16 |
|
---|
17 | #define EFI_APRIORI_GUID \
|
---|
18 | { \
|
---|
19 | 0xfc510ee7, 0xffdc, 0x11d4, {0xbd, 0x41, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
|
---|
20 | }
|
---|
21 |
|
---|
22 | extern EFI_GUID gAprioriGuid;
|
---|
23 |
|
---|
24 | #endif
|
---|