diff options
-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
//
|