https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d5421d5a3d14a3d64f7667cb9490cf29c0ad9ceb

commit d5421d5a3d14a3d64f7667cb9490cf29c0ad9ceb
Author:     Konrad Dybcio <[email protected]>
AuthorDate: Sun Apr 11 03:11:13 2021 +0200
Commit:     Stanislav Motylkov <[email protected]>
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 <[email protected]>
---
 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;

Reply via email to