diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-24 07:30:54 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-24 07:30:54 +0000 |
commit | 9f6531d14d145918079d03926ff827f6c1a274a4 (patch) | |
tree | ecbc4f73f2e538769cf0b4ea1137555bd7af00b4 /IntelFrameworkModulePkg/Library | |
parent | 14d59fa188194a6199a04677352d9d47b26ad632 (diff) | |
download | edk2-platforms-9f6531d14d145918079d03926ff827f6c1a274a4.tar.xz |
Adjust the code so that global variable placed at beginning of file.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8172 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library')
2 files changed, 4 insertions, 3 deletions
diff --git a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h index 25262bc0b3..5229061ff2 100644 --- a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h +++ b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h @@ -32,6 +32,7 @@ #include <FrameworkModuleBase.h>
#include <DebugInfo.h>
+extern EFI_REPORT_STATUS_CODE mReportStatusCode;
/**
Locate he report status code service.
@@ -129,7 +130,5 @@ InternalReportStatusCodeEx ( IN UINTN ExtendedDataSize
);
-extern EFI_REPORT_STATUS_CODE mReportStatusCode;
-
#endif // __REPORT_STATUS_CODE_LIB_INTERNAL__H
diff --git a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h index 2bc73ba190..35d5faedd1 100644 --- a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h +++ b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLibInternal.h @@ -33,6 +33,8 @@ #include <FrameworkModuleBase.h>
#include <DebugInfo.h>
+extern EFI_REPORT_STATUS_CODE mReportStatusCode;
+
/**
Locatet he report status code service.
@@ -129,7 +131,7 @@ InternalReportStatusCodeEx ( IN UINTN ExtendedDataSize
);
-extern EFI_REPORT_STATUS_CODE mReportStatusCode;
+
#endif // __REPORT_STATUS_CODE_LIB_INTERNAL__H
|