https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d5421d5a3d14a3d64f766…
commit d5421d5a3d14a3d64f7667cb9490cf29c0ad9ceb
Author: Konrad Dybcio <konrad.dybcio(a)somainline.org>
AuthorDate: Sun Apr 11 03:11:13 2021 +0200
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Sun Apr 25 21:08:17 2021 +0300
[HHPCOMP] Add ARM64/AArch64 types
These were missing... not anymore!
Addendum to 4c7b71ac. CORE-17518
Signed-off-by: Konrad Dybcio <konrad.dybcio(a)somainline.org>
---
sdk/tools/hhpcomp/chmc/chm.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sdk/tools/hhpcomp/chmc/chm.h b/sdk/tools/hhpcomp/chmc/chm.h
index 7256a3991f4..8f011757e18 100644
--- a/sdk/tools/hhpcomp/chmc/chm.h
+++ b/sdk/tools/hhpcomp/chmc/chm.h
@@ -59,9 +59,11 @@ typedef unsigned long UInt32;
typedef long long Int64;
typedef unsigned long long UInt64;
-/* x86-64 */
+/* x86-64 */
+/* IA-64 */
+/* ARM64/AArch64 */
/* Note that these may be appropriate for other 64-bit machines. */
-#elif __x86_64__ || __ia64__
+#elif __x86_64__ || __ia64__ || __aarch64__
typedef unsigned char UChar;
typedef short Int16;
typedef unsigned short UInt16;