2011-03-10 23:12:34 +01:00
|
|
|
/** @file
|
|
|
|
Debug Print Error Level Library class
|
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-03-10 23:12:34 +01:00
|
|
|
|
|
|
|
**/
|
2011-03-15 01:53:52 +01:00
|
|
|
#ifndef _DEBUG_PRINT_ERROR_LEVEL_LIB_H_
|
|
|
|
#define _DEBUG_PRINT_ERROR_LEVEL_LIB_H_
|
2011-03-10 23:12:34 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the debug print error level mask for the current module.
|
|
|
|
|
|
|
|
@return Debug print error level mask for the current module.
|
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
GetDebugPrintErrorLevel (
|
|
|
|
VOID
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the global debug print error level mask fpr the entire platform.
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2011-03-15 01:53:52 +01:00
|
|
|
@param ErrorLevel Global debug print error level
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2016-09-12 10:35:39 +02:00
|
|
|
@retval TRUE The debug print error level mask was successfully set.
|
2011-03-15 01:53:52 +01:00
|
|
|
@retval FALSE The debug print error level mask could not be set.
|
2011-03-10 23:12:34 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
SetDebugPrintErrorLevel (
|
|
|
|
UINT32 ErrorLevel
|
|
|
|
);
|
2011-03-15 01:53:52 +01:00
|
|
|
#endif
|