]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/DebugPrintErrorLevelLib.h
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Include / Library / DebugPrintErrorLevelLib.h
CommitLineData
2891fc8b 1/** @file\r
2 Debug Print Error Level Library class\r
3\r
9095d37b 4 Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>\r
2891fc8b 5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php.\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
a77badbb
ED
14#ifndef _DEBUG_PRINT_ERROR_LEVEL_LIB_H_\r
15#define _DEBUG_PRINT_ERROR_LEVEL_LIB_H_\r
2891fc8b 16\r
17/**\r
18 Returns the debug print error level mask for the current module.\r
19\r
20 @return Debug print error level mask for the current module.\r
21\r
22**/\r
23UINT32\r
24EFIAPI\r
25GetDebugPrintErrorLevel (\r
26 VOID\r
27 );\r
28\r
29/**\r
30 Sets the global debug print error level mask fpr the entire platform.\r
9095d37b 31\r
a77badbb 32 @param ErrorLevel Global debug print error level\r
9095d37b 33\r
00b7cc0f 34 @retval TRUE The debug print error level mask was successfully set.\r
a77badbb 35 @retval FALSE The debug print error level mask could not be set.\r
2891fc8b 36\r
37**/\r
38BOOLEAN\r
39EFIAPI\r
40SetDebugPrintErrorLevel (\r
41 UINT32 ErrorLevel\r
42 );\r
a77badbb 43#endif\r