diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-02 09:33:33 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-02 09:33:33 +0000 |
commit | 29b052646a5f5fa0b28cbe9ca6224541e688f251 (patch) | |
tree | 6c44859c21aef783db901b8a239f592d29470e19 /Nt32Pkg/Library/EdkGenericBdsLib | |
parent | 3f94b8e89a145bdecde2adc473f16748a1611998 (diff) | |
download | edk2-platforms-29b052646a5f5fa0b28cbe9ca6224541e688f251.tar.xz |
Make EdkGenericBdsLib compile.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2954 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/Library/EdkGenericBdsLib')
-rw-r--r-- | Nt32Pkg/Library/EdkGenericBdsLib/BdsMisc.c | 2 | ||||
-rw-r--r-- | Nt32Pkg/Library/EdkGenericBdsLib/CommonHeader.h | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Nt32Pkg/Library/EdkGenericBdsLib/BdsMisc.c b/Nt32Pkg/Library/EdkGenericBdsLib/BdsMisc.c index dc53a678bd..819e926290 100644 --- a/Nt32Pkg/Library/EdkGenericBdsLib/BdsMisc.c +++ b/Nt32Pkg/Library/EdkGenericBdsLib/BdsMisc.c @@ -778,7 +778,7 @@ Returns: EFI_STATUS
BdsLibOutputStrings (
- IN EFI_SIMPLE_TEXT_OUT_PROTOCOL *ConOut,
+ IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *ConOut,
...
)
/*++
diff --git a/Nt32Pkg/Library/EdkGenericBdsLib/CommonHeader.h b/Nt32Pkg/Library/EdkGenericBdsLib/CommonHeader.h index d2ac661f70..021b608089 100644 --- a/Nt32Pkg/Library/EdkGenericBdsLib/CommonHeader.h +++ b/Nt32Pkg/Library/EdkGenericBdsLib/CommonHeader.h @@ -24,6 +24,7 @@ //
// The protocols, PPI and GUID defintions for this module
//
+#include <Protocol/Cpu.h>
#include <Protocol/SimpleTextIn.h>
#include <Protocol/SimpleTextOut.h>
#include <Protocol/LoadedImage.h>
@@ -34,12 +35,16 @@ #include <Protocol/SimpleNetwork.h>
#include <Protocol/AcpiS3Save.h>
#include <Guid/GlobalVariable.h>
-#include <Protocol/FormBrowser.h>
+#include <Protocol/FormBrowserFramework.h>
#include <Protocol/LegacyBios.h>
#include <Protocol/DriverBinding.h>
#include <Protocol/LoadFile.h>
#include <Protocol/DevicePath.h>
#include <Protocol/FirmwareVolume.h>
+#include <Protocol/Performance.h>
+#include <Protocol/WinNtIo.h>
+#include <Guid/PcAnsi.h>
+
//
// The Library classes this module consumes
//
|