Last change
on this file since 80721 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
716 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | EBC Debugger configuration protocol.
|
---|
3 |
|
---|
4 | Copyright (c) 2007-2016, Intel Corporation. All rights reserved.<BR>
|
---|
5 |
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef __EFI_DEBUGGER_CONFIGURATION_H__
|
---|
11 | #define __EFI_DEBUGGER_CONFIGURATION_H__
|
---|
12 |
|
---|
13 | #define EFI_DEBUGGER_CONFIGURATION_PROTOCOL_GUID \
|
---|
14 | { 0x577d959c, 0xe967, 0x4546, 0x86, 0x20, 0xc7, 0x78, 0xfa, 0xe5, 0xda, 0x5 }
|
---|
15 |
|
---|
16 | #define EFI_DEBUGGER_CONFIGURATION_VERSION 0x00000001
|
---|
17 |
|
---|
18 | typedef struct _EFI_DEBUGGER_CONFIGURATION_PROTOCOL {
|
---|
19 | UINT32 DebuggerConfigurationRevision;
|
---|
20 | VOID *DebuggerPrivateData;
|
---|
21 | } EFI_DEBUGGER_CONFIGURATION_PROTOCOL;
|
---|
22 |
|
---|
23 | extern EFI_GUID gEfiDebuggerConfigurationProtocolGuid;
|
---|
24 |
|
---|
25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.