2020-02-22 13:54:50 -08:00
|
|
|
/*!
|
|
|
|
|
@file EfiLogger.h
|
|
|
|
|
|
|
|
|
|
@brief EFI specific implementation of the logger.
|
|
|
|
|
|
|
|
|
|
@author Satoshi Tanda
|
|
|
|
|
|
|
|
|
|
@copyright Copyright (c) 2020 - , Satoshi Tanda. All rights reserved.
|
|
|
|
|
*/
|
2020-02-22 19:54:32 -08:00
|
|
|
#pragma once
|
2020-02-22 13:54:50 -08:00
|
|
|
#include "../../Logger.h"
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
@brief Initializes the global logger.
|
|
|
|
|
|
|
|
|
|
@return EFI_SUCCESS on success; otherwise, an appropriate error code.
|
|
|
|
|
*/
|
|
|
|
|
EFI_STATUS
|
|
|
|
|
InitializeLogger (
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
@brief Clean up the logger.
|
|
|
|
|
*/
|
|
|
|
|
VOID
|
|
|
|
|
CleanupLogger (
|
|
|
|
|
);
|