TianoCore EDK2 master
Loading...
Searching...
No Matches
DebugPrintErrorLevel.h
Go to the documentation of this file.
1
9#ifndef UEFI_PAYLOAD_DEBUG_PRINT_ERROR_LEVEL_H_
10#define UEFI_PAYLOAD_DEBUG_PRINT_ERROR_LEVEL_H_
11
12#include <Uefi.h>
14
15#pragma pack (1)
16//
17// ErrorLevel: The error level of the debug message.
18// Bits for ErrorLevel is declared in
19// edk2\MdePkg\Include\Library\DebugLib.h
20//
21typedef struct {
23 UINT32 ErrorLevel;
25
26#pragma pack()
27
28#define UEFI_PAYLOAD_DEBUG_PRINT_ERROR_LEVEL_REVISION 1
29
30extern GUID gEdkiiDebugPrintErrorLevelGuid;
31#endif
Definition: Base.h:213