]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/Protocol/DebugLevel.h
Add temporary fix for PeLoader
[mirror_edk2.git] / EdkModulePkg / Include / Protocol / DebugLevel.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 DebugLevel.h
15
16 Abstract:
17 This protocol is used to abstract the Debug Mask serivces for
18 the specific driver or application image.
19
20 --*/
21
22 #ifndef __DEBUG_LEVEL_H__
23 #define __DEBUG_LEVEL_H__
24
25 //
26 // 8D4C62E6-CD98-4e1d-AD6E-48BB50D29FF7
27 //
28 #define EFI_DEBUG_LEVEL_PROTOCOL_GUID \
29 { 0x8d4c62e6, 0xcd98, 0x4e1d, {0xad, 0x6e, 0x48, 0xbb, 0x50, 0xd2, 0x9f, 0xf7 } }
30
31 //
32 // DebugLevel protocol definition
33 //
34 typedef struct _EFI_DEBUG_LEVEL_PROTOCOL {
35 UINTN DebugLevel;
36 } EFI_DEBUG_LEVEL_PROTOCOL;
37
38 extern EFI_GUID gEfiDebugLevelProtocolGuid;
39
40 #endif