]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Include/Guid/StatusCodeDataTypeDebug.h
Retire <FrameworkModuleBase.h>, <FrameworkModuleDxe.h>, and <FrameworkModulePei.h>
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Guid / StatusCodeDataTypeDebug.h
1 /** @file
2 GUID used to pass DEBUG() macro information through the Status Code Protocol
3 and Status Code PPI
4
5 Copyright (c) 2007, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _STATUS_CODE_DATA_TYPE_DEBUG_H_
17 #define _STATUS_CODE_DATA_TYPE_DEBUG_H_
18
19 //
20 // Debug DataType defintions.
21 //
22
23 #define EFI_STATUS_CODE_DATA_TYPE_DEBUG_GUID \
24 { 0x9A4E9246, 0xD553, 0x11D5, { 0x87, 0xE2, 0x00, 0x06, 0x29, 0x45, 0xC3, 0xb9 } }
25
26 #define EFI_STATUS_CODE_DATA_MAX_SIZE 200
27
28 typedef struct {
29 UINT32 ErrorLevel;
30 //
31 // 12 * sizeof (UINT64) Var Arg stack
32 //
33 // ascii DEBUG () Format string
34 //
35 } EFI_DEBUG_INFO;
36
37 extern EFI_GUID gEfiStatusCodeDataTypeDebugGuid;
38
39 #endif // _STATUS_CODE_DATA_TYPE_DEBUG_H_