diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-10 07:13:54 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-10 07:13:54 +0000 |
commit | ed7752ec44001d317f79c8631dccd9650c396617 (patch) | |
tree | d1a5c69c928a254f9f25154e67f839beed6d5a77 /IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib | |
parent | 7859df05bc72e11927877e2f4886af4024731984 (diff) | |
download | edk2-platforms-ed7752ec44001d317f79c8631dccd9650c396617.tar.xz |
Add some function/header comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5037 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib')
-rw-r--r-- | IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c index a335ae74c3..973e14b07a 100644 --- a/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c @@ -1,5 +1,6 @@ /** @file
- Report Status Code Library for DXE Phase.
+ Implementation for ReportStatusCodeLib library class. This
+ library instance can be used to any phase: SEC/PEI/DXE.
Copyright (c) 2006 - 2007, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
@@ -12,7 +13,6 @@ **/
-
#include <Base.h>
#include <Framework/StatusCode.h>
#include <Guid/StatusCodeDataTypeId.h>
@@ -528,3 +528,4 @@ ReportDebugCodeEnabled ( {
return (BOOLEAN) ((PcdGet8(PcdReportStatusCodePropertyMask) & REPORT_STATUS_CODE_PROPERTY_DEBUG_CODE_ENABLED) != 0);
}
+
|