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