]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/DebugPrintErrorLevelLib.h
Update DebugLib to provide support for "err" command in the EFI Shell to adjust the...
[mirror_edk2.git] / MdePkg / Include / Library / DebugPrintErrorLevelLib.h
1 /** @file
2 Debug Print Error Level Library class
3
4 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 /**
16 Returns the debug print error level mask for the current module.
17
18 @return Debug print error level mask for the current module.
19
20 **/
21 UINT32
22 EFIAPI
23 GetDebugPrintErrorLevel (
24 VOID
25 );
26
27 /**
28 Sets the global debug print error level mask fpr the entire platform.
29
30 @retval TRUE The debug print error level mask was sucessfully set.
31 @retval FALSE The debug print error level mask could not be set.
32
33 **/
34 BOOLEAN
35 EFIAPI
36 SetDebugPrintErrorLevel (
37 UINT32 ErrorLevel
38 );