MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / KeyMsg

Function KeyMsg

BaseTools/Source/C/Common/EfiUtilityMsgs.c:726–757  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

724}
725
726VOID
727KeyMsg (
728 CHAR8 *MsgFmt,
729 ...
730 )
731/*++
732
733Routine Description:
734 Print a key level message.
735
736Arguments:
737 MsgFmt - the format string for the message. Can contain formatting
738 controls for use with varargs.
739 List - the variable list.
740
741Returns:
742 NA
743
744--*/
745{
746 va_list List;
747 //
748 // If the debug level is less than current print level, then do nothing.
749 //
750 if (KEY_LOG_LEVEL < mPrintLogLevel) {
751 return ;
752 }
753
754 va_start (List, MsgFmt);
755 PrintSimpleMessage (MsgFmt, List);
756 va_end (List);
757}
758
759VOID
760SetPrintLimits (

Callers 1

GenCrc32.cFile · 0.85

Calls 1

PrintSimpleMessageFunction · 0.85

Tested by

no test coverage detected