aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-11-01 16:49:05 -0700
committerChris Robinson <[email protected]>2013-11-01 16:49:05 -0700
commit426429279b576a8b2be0daa2ce2483388f972d95 (patch)
treedd8dc19a62d6bac17bbf64043125dc663cc0f6ef /OpenAL32
parent7460dd1b0870d55f18108c5e69d93b03e0e4aa95 (diff)
Use the existing ALint64SOFT/ALuint64SOFT types for ALint64/ALuint64
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index b1a3f218..93679824 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -36,20 +36,8 @@
#endif
-#if defined(HAVE_STDINT_H)
-#include <stdint.h>
-typedef int64_t ALint64;
-typedef uint64_t ALuint64;
-#elif defined(HAVE___INT64)
-typedef __int64 ALint64;
-typedef unsigned __int64 ALuint64;
-#elif (SIZEOF_LONG == 8)
-typedef long ALint64;
-typedef unsigned long ALuint64;
-#elif (SIZEOF_LONG_LONG == 8)
-typedef long long ALint64;
-typedef unsigned long long ALuint64;
-#endif
+typedef ALint64SOFT ALint64;
+typedef ALuint64SOFT ALuint64;
typedef ptrdiff_t ALintptrEXT;
typedef ptrdiff_t ALsizeiptrEXT;