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

commit 4c7b71ac4ffd8d93caf83267a68c81b414a9dfbf
Author:     Konrad Dybcio <[email protected]>
AuthorDate: Wed Mar 24 07:32:11 2021 +0100
Commit:     GitHub <[email protected]>
CommitDate: Wed Mar 24 09:32:11 2021 +0300

    [HHPCOMP] Add ARM (32-bit) types (#3548)
    
    ARM32 seems to use the same type defines as i386 and friends.
    Let's allow the thing to be compiled again!
    
    CORE-17517
    
    Signed-off-by: Konrad Dybcio <[email protected]>
---
 sdk/tools/hhpcomp/chmc/chm.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sdk/tools/hhpcomp/chmc/chm.h b/sdk/tools/hhpcomp/chmc/chm.h
index 27aa6f79901..7256a3991f4 100644
--- a/sdk/tools/hhpcomp/chmc/chm.h
+++ b/sdk/tools/hhpcomp/chmc/chm.h
@@ -49,7 +49,8 @@ typedef unsigned __int64        UInt64;
 /* Sparc        */
 /* MIPS         */
 /* PPC          */
-#elif __i386__ || __sun || __sgi || __ppc__
+/* ARM (32-bit) */
+#elif __i386__ || __sun || __sgi || __ppc__ || __arm__
 typedef unsigned char           UChar;
 typedef short                   Int16;
 typedef unsigned short          UInt16;

Reply via email to