81 lines
2.0 KiB
C
81 lines
2.0 KiB
C
/** @file
|
|
Header for Feature Report function
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2015, Insyde Software Corporation. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _OK_FEATURE_REPORT_H_
|
|
#define _OK_FEATURE_REPORT_H_
|
|
|
|
#ifdef OK_FEATURE_REPORT_ENABLE
|
|
#include <Uefi.h>
|
|
|
|
//
|
|
// Libraries
|
|
//
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
//
|
|
// Consumed Protocols
|
|
//
|
|
#include <Protocol/OkFeatureReportInterface.h>
|
|
|
|
/**
|
|
Feature Report Print function
|
|
|
|
@param Format The point to the Format string
|
|
@param ... Variable argument list whose contents are accessed based on the format string specified by Format.
|
|
**/
|
|
static
|
|
VOID
|
|
EFIAPI
|
|
FeatureReportPrintStyle2 (
|
|
IN CONST CHAR8 *Format,
|
|
...
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
EFI_GUID OkFeatureReportGuid = EFI_OK_FEATURE_REPORT_INTERFACE_PROTOCOL_GUID;
|
|
static EFI_OK_FEATURE_REPORT_INTERFACE_PROTOCOL *OkFeatureReport = NULL;
|
|
VA_LIST Marker;
|
|
|
|
if (OkFeatureReport == NULL) {
|
|
|
|
Status = gBS->LocateProtocol (
|
|
&OkFeatureReportGuid,
|
|
NULL,
|
|
&OkFeatureReport
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
VA_START (Marker, Format);
|
|
Status = OkFeatureReport->RecordMessage (Format, Marker);
|
|
VA_END (Marker);
|
|
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
//
|
|
// Library class public defines
|
|
//
|
|
#ifdef OK_FEATURE_REPORT_ENABLE
|
|
#define FEATURE_REPORT(Expression) FeatureReportPrintStyle2 Expression
|
|
#else
|
|
#define FEATURE_REPORT(Expression)
|
|
#endif
|
|
|
|
#endif
|