TianoCore EDK2 master
Loading...
Searching...
No Matches
BaseDebugPrintErrorLevelLib.c
Go to the documentation of this file.
1
11#include <Base.h>
13#include <Library/PcdLib.h>
14
21UINT32
22EFIAPI
24 VOID
25 )
26{
27 //
28 // Retrieve the current debug print error level mask from PcdDebugPrintErrorLevel.
29 //
30 return PcdGet32 (PcdDebugPrintErrorLevel);
31}
32
42BOOLEAN
43EFIAPI
45 UINT32 ErrorLevel
46 )
47{
48 //
49 // This library uinstance does not support setting the global debug print error
50 // level mask.
51 //
52 return FALSE;
53}
BOOLEAN EFIAPI SetDebugPrintErrorLevel(UINT32 ErrorLevel)
UINT32 EFIAPI GetDebugPrintErrorLevel(VOID)
#define FALSE
Definition: Base.h:307
#define PcdGet32(TokenName)
Definition: PcdLib.h:362