]>
Commit | Line | Data |
---|---|---|
2b2efe33 PB |
1 | /** @file\r |
2 | EBC Debugger configuration protocol.\r | |
3 | \r | |
4 | Copyright (c) 2007-2016, Intel Corporation. All rights reserved.<BR>\r | |
5 | \r | |
6 | This program and the accompanying materials\r | |
7 | are licensed and made available under the terms and conditions\r | |
8 | of the BSD License which accompanies this distribution. The\r | |
9 | full text of the license may be found at\r | |
10 | http://opensource.org/licenses/bsd-license.php\r | |
11 | \r | |
12 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
13 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
14 | \r | |
15 | **/\r | |
16 | \r | |
17 | #ifndef __EFI_DEBUGGER_CONFIGURATION_H__\r | |
18 | #define __EFI_DEBUGGER_CONFIGURATION_H__\r | |
19 | \r | |
20 | #define EFI_DEBUGGER_CONFIGURATION_PROTOCOL_GUID \\r | |
21 | { 0x577d959c, 0xe967, 0x4546, 0x86, 0x20, 0xc7, 0x78, 0xfa, 0xe5, 0xda, 0x5 }\r | |
22 | \r | |
23 | #define EFI_DEBUGGER_CONFIGURATION_VERSION 0x00000001\r | |
24 | \r | |
25 | typedef struct _EFI_DEBUGGER_CONFIGURATION_PROTOCOL {\r | |
26 | UINT32 DebuggerConfigurationRevision;\r | |
27 | VOID *DebuggerPrivateData;\r | |
28 | } EFI_DEBUGGER_CONFIGURATION_PROTOCOL;\r | |
29 | \r | |
30 | extern EFI_GUID gEfiDebuggerConfigurationProtocolGuid;\r | |
31 | \r | |
32 | #endif\r |