diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-10 05:29:46 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-10 05:29:46 +0000 |
commit | 2f053c925f7b8f31a1ade291b6de69ca9361ddd4 (patch) | |
tree | d810a850e73b0fb52caf4f128dbcecd26deec154 /Nt32Pkg/Library | |
parent | 2287f237eea173b36c703bca8840783c27d5f45f (diff) | |
download | edk2-2f053c925f7b8f31a1ade291b6de69ca9361ddd4.tar.gz edk2-2f053c925f7b8f31a1ade291b6de69ca9361ddd4.tar.bz2 edk2-2f053c925f7b8f31a1ade291b6de69ca9361ddd4.zip |
1) Move EFI_DEBUG_INFO structure to IntelFrameworkModule/Include/DebugInfo.h header file.
2) Move BaseReportStatusCodeLib, PeiDxeDebugLibReportStatusCode, DxeReportStatusCodeLibFramework,PeiReportStatusCodeLib to IntelFrameworkModulePkg
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3602 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/Library')
3 files changed, 3 insertions, 1 deletions
diff --git a/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf b/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf index 0a883088c3..30e10a53e8 100644 --- a/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf +++ b/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf @@ -44,7 +44,6 @@ IntelFrameworkPkg/IntelFrameworkPkg.dec
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
-
[LibraryClasses]
ReportStatusCodeLib
BaseMemoryLib
diff --git a/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c b/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c index c9b2aa7a10..cd3300e078 100644 --- a/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c +++ b/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c @@ -19,6 +19,7 @@ //
#include <FrameWorkDxe.h>
#include <WinNtDxe.h>
+#include <DebugInfo.h>
//
// The protocols, PPI and GUID defintions for this module
diff --git a/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c b/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c index 599c9c7751..412d97c05c 100644 --- a/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c +++ b/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c @@ -19,6 +19,7 @@ //
#include <FrameworkPei.h>
#include <WinNtPeim.h>
+
//
// The protocols, PPI and GUID defintions for this module
//
@@ -33,6 +34,7 @@ #include <Library/BaseMemoryLib.h>
#include <Library/ReportStatusCodeLib.h>
#include <Library/PeiServicesLib.h>
+#include <DebugInfo.h>
//
// Cache of WinNtThunk protocol
|