mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[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 <konrad.dybcio@somainline.org>
This commit is contained in:
parent
e6bea426f3
commit
4c7b71ac4f
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue