Usermode/AxWin3 - More WM IPC messages implemented
[tpg/acess2.git] / Usermode / include / stdint.h
index f2707aa..477f8eb 100644 (file)
@@ -14,15 +14,18 @@ typedef signed int          int32_t;
 typedef signed long long       int64_t;
 
 #if ARCHDIR_is_x86
-typedef uint32_t       intptr_t;
+typedef int32_t        intptr_t;
 typedef uint32_t       uintptr_t;
 #elif ARCHDIR_is_x86_64
-typedef uint64_t       intptr_t;
+typedef int64_t        intptr_t;
 typedef uint64_t       uintptr_t;
+#elif ARCHDIR_is_armv7
+typedef int32_t        intptr_t;
+typedef uint32_t       uintptr_t;
 #else
 # error "Unknown pointer size"
 #endif
 
-typedef uint64_t       off_t;
+//typedef uint64_t     off_t;
 
 #endif

UCC git Repository :: git.ucc.asn.au