]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Protocol/DebuggerConfiguration.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Include / Protocol / DebuggerConfiguration.h
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