]>
Commit | Line | Data |
---|---|---|
18b144ea | 1 | /** @file\r |
2 | This file defines the debug agent GUID for HOB and configuration table.\r | |
3 | \r | |
4 | Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r | |
5 | This program and the accompanying materials\r | |
6 | are licensed and made available under the terms and conditions of the BSD License\r | |
7 | which accompanies this distribution. The full text of the license may be found at\r | |
8 | http://opensource.org/licenses/bsd-license.php.\r | |
9 | \r | |
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
12 | \r | |
13 | **/\r | |
14 | \r | |
1d1f4c62 | 15 | #ifndef __EFI_DEBUG_AGENT_GUID_H__\r |
18b144ea | 16 | #define __EFI_DEBUG_AGENT_GUID_H__\r |
17 | \r | |
18 | ///\r | |
19 | /// This guid is used as a variable GUID for the capsule variable\r | |
20 | /// if the capsule pointer is passed through reset via a variable.\r | |
21 | ///\r | |
22 | /// This guid is also used as a hob GUID for the capsule data\r | |
23 | /// when the capsule pointer is passed from PEI phase to DXE phase.\r | |
24 | ///\r | |
25 | #define EFI_DEBUG_AGENT_GUID \\r | |
26 | { \\r | |
27 | 0x865a5a9b, 0xb85d, 0x474c, { 0x84, 0x55, 0x65, 0xd1, 0xbe, 0x84, 0x4b, 0xe2 } \\r | |
28 | }\r | |
29 | \r | |
30 | extern EFI_GUID gEfiDebugAgentGuid;\r | |
31 | \r | |
32 | #endif\r |