Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-08-17 20:36:37 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2008-08-17 20:36:37 +0400
commit68765dc94bbb1bf924caa753d62d3f6029c60db5 (patch)
treebb0077c2fea6a4bf949c0cb83b50f432772430b2 /source/blender/blenloader/BLO_sys_types.h
parentfda00bc034de33371c4c7471467889f7d33c780b (diff)
Win64 commit: first little commit to test how it compiles on other plattforms - I'll then commit the other changes if all is fine :)
Diffstat (limited to 'source/blender/blenloader/BLO_sys_types.h')
-rw-r--r--source/blender/blenloader/BLO_sys_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenloader/BLO_sys_types.h b/source/blender/blenloader/BLO_sys_types.h
index a1885894fe3..a519183a1e1 100644
--- a/source/blender/blenloader/BLO_sys_types.h
+++ b/source/blender/blenloader/BLO_sys_types.h
@@ -64,6 +64,14 @@ typedef unsigned __int16 uint16_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
+#ifdef _WIN64
+typedef __int64 intptr_t;
+typedef unsigned __int64 uintptr_t;
+#else
+typedef long intptr_t;
+typedef unsigned long uintptr_t;
+#endif
+
#elif defined(__linux__)
/* Linux-i386, Linux-Alpha, Linux-ppc */