diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-21 14:42:45 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-21 14:42:45 +0000 |
commit | 5fd5fcd321e3d778aa51f1a47732c8d886c1ff4c (patch) | |
tree | dd2cadee0d7de823326d1e584f110d0e75d0a453 /Nt32Pkg/Include | |
parent | 7d582d6b499ed30268da033cc17fbde6e7b02a9d (diff) | |
download | edk2-5fd5fcd321e3d778aa51f1a47732c8d886c1ff4c.tar.gz edk2-5fd5fcd321e3d778aa51f1a47732c8d886c1ff4c.tar.bz2 edk2-5fd5fcd321e3d778aa51f1a47732c8d886c1ff4c.zip |
UEFI HII: Merge UEFI HII support changes from branch.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4601 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/Include')
-rw-r--r-- | Nt32Pkg/Include/Common/WinNTInclude.h | 5 | ||||
-rw-r--r-- | Nt32Pkg/Include/Library/EdkGenericBdsLib.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Nt32Pkg/Include/Common/WinNTInclude.h b/Nt32Pkg/Include/Common/WinNTInclude.h index 3aa02e895e..982488f29a 100644 --- a/Nt32Pkg/Include/Common/WinNTInclude.h +++ b/Nt32Pkg/Include/Common/WinNTInclude.h @@ -42,6 +42,11 @@ Abstract: #undef VOID
#undef DEBUG_EVENT
+// WQBugBug: This typedef is to make "windows.h" buildable.
+// It should be removed after the root cause why
+// size_t is undefined when go into the line below is found.
+typedef UINT32 size_t ;
+
#include "windows.h"
#undef GUID
diff --git a/Nt32Pkg/Include/Library/EdkGenericBdsLib.h b/Nt32Pkg/Include/Library/EdkGenericBdsLib.h index 351e4cd74c..bc2066fc46 100644 --- a/Nt32Pkg/Include/Library/EdkGenericBdsLib.h +++ b/Nt32Pkg/Include/Library/EdkGenericBdsLib.h @@ -390,7 +390,7 @@ EFI_STATUS BdsLibGetHiiHandles (
IN EFI_HII_PROTOCOL *Hii,
IN OUT UINT16 *HandleBufferLength,
- OUT EFI_HII_HANDLE **HiiHandles
+ OUT FRAMEWORK_EFI_HII_HANDLE **HiiHandles
);
#endif // _BDS_LIB_H_
|