diff options
| -rw-r--r-- | Public/Kits/SystemKit/CoreAPI.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Public/Kits/SystemKit/CoreAPI.hxx b/Public/Kits/SystemKit/CoreAPI.hxx index 9d907104..05cce68d 100644 --- a/Public/Kits/SystemKit/CoreAPI.hxx +++ b/Public/Kits/SystemKit/CoreAPI.hxx @@ -35,13 +35,17 @@ typedef __WCHAR_TYPE__ WCHAR; typedef WCHAR* PWCHAR; #ifdef __x86_64__ -# define _M_AMD64 +# define _M_AMD64 2 #endif #ifdef __aarch64__ -# define _M_AARCH64 +# define _M_AARCH64 3 #endif #ifdef __powerpc64__ -# define _M_PPC64 +# define _M_PPC64 4 +#endif + +#ifdef __64x0__ +# define _M_64000 5 #endif |
