diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-05 05:21:49 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-05 05:21:49 +0000 |
commit | 5a6213cda73deb51a3f37291fdef2d2896473381 (patch) | |
tree | dd21e251d5aa2ce75144b4cf835a3980f4eb920d | |
parent | 347cacceeff77048b63a5a7a1308ff3bab358c78 (diff) | |
download | edk2-5a6213cda73deb51a3f37291fdef2d2896473381.zip edk2-5a6213cda73deb51a3f37291fdef2d2896473381.tar.gz edk2-5a6213cda73deb51a3f37291fdef2d2896473381.tar.bz2 |
Remove over specific protocol guid and add missing header file for required protocol
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6391 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf | 2 | ||||
-rw-r--r-- | MdeModulePkg/Library/ExtendedIfrSupportLib/LibraryInternal.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf b/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf index 3d0c974..f876a60 100644 --- a/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf +++ b/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf @@ -60,8 +60,6 @@ gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
gEfiHiiDatabaseProtocolGuid
gEfiHiiStringProtocolGuid
- gEfiHiiConfigRoutingProtocolGuid
- gEfiFormBrowser2ProtocolGuid
[Pcd]
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
diff --git a/MdeModulePkg/Library/ExtendedIfrSupportLib/LibraryInternal.h b/MdeModulePkg/Library/ExtendedIfrSupportLib/LibraryInternal.h index f402f5a..8bc8d2a 100644 --- a/MdeModulePkg/Library/ExtendedIfrSupportLib/LibraryInternal.h +++ b/MdeModulePkg/Library/ExtendedIfrSupportLib/LibraryInternal.h @@ -20,6 +20,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include <Guid/GlobalVariable.h>
#include <Protocol/DevicePath.h>
+#include <Protocol/HiiDatabase.h>
+#include <Protocol/HiiString.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
|