diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-03 14:09:02 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-03 14:09:02 +0000 |
commit | 2af44cf003fdfc808bc2e0d07a1420528927bfaf (patch) | |
tree | 5c867aa8d13b7d7cca1724723dee07459bc0d995 | |
parent | da0c760e76d42d0f5d1eecc905a1399893360d08 (diff) | |
download | edk2-platforms-2af44cf003fdfc808bc2e0d07a1420528927bfaf.tar.xz |
Add #include <Uefi/UefiBaseType.h> for the reference of "EFI_GUID" in the library class
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7779 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/Library/ReportStatusCodeLib.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/MdePkg/Include/Library/ReportStatusCodeLib.h b/MdePkg/Include/Library/ReportStatusCodeLib.h index fe0f67cf19..9375308c4f 100644 --- a/MdePkg/Include/Library/ReportStatusCodeLib.h +++ b/MdePkg/Include/Library/ReportStatusCodeLib.h @@ -15,6 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #ifndef __REPORT_STATUS_CODE_LIB_H__
#define __REPORT_STATUS_CODE_LIB_H__
+#include <Uefi/UefiBaseType.h>
#include <Pi/PiMultiPhase.h>
#include <Protocol/DevicePath.h>
@@ -25,10 +26,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #define REPORT_STATUS_CODE_PROPERTY_ERROR_CODE_ENABLED 0x00000002
#define REPORT_STATUS_CODE_PROPERTY_DEBUG_CODE_ENABLED 0x00000004
-//
-// Extended Data structure definitions with EFI_STATUS_CODE_DATA headers removed
-//
-
/**
Converts a status code to an 8-bit POST code value.
@@ -151,7 +148,7 @@ ReportStatusCodeExtractDebugInfo ( passed in a zero instance, NULL extended data, and a caller ID of
gEfiCallerIdGuid, which is the GUID for the module.
- ReportStatusCode()must actively prevent recusrsion. If ReportStatusCode()
+ ReportStatusCode()must actively prevent recursion. If ReportStatusCode()
is called while processing another any other Report Status Code Library function,
then ReportStatusCode() must return immediately.
|