From 03e5bba36d7826022ae5d75da96bd3a1dbe0a827 Mon Sep 17 00:00:00 2001 From: Xerxes Rånby Date: Tue, 29 Jan 2013 15:08:23 +0100 Subject: Remove system dependency of intptr_t and uint64_t. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Xerxes Rånby --- make/stub_includes/openal/al-types.h | 10 ++++++++++ make/stub_includes/openal/alc-types.h | 10 ++++++++++ 2 files changed, 20 insertions(+) (limited to 'make/stub_includes') diff --git a/make/stub_includes/openal/al-types.h b/make/stub_includes/openal/al-types.h index 6a609e5..e15c326 100644 --- a/make/stub_includes/openal/al-types.h +++ b/make/stub_includes/openal/al-types.h @@ -77,6 +77,16 @@ typedef float ALfloat; /** 64-bit IEEE754 floating-point */ typedef double ALdouble; +/** uint64_t */ +#if defined(_WIN64) + typedef unsigned __int64 uint64_t; +#elif defined(__ia64__) || defined(__x86_64__) + typedef unsigned long int uint64_t; +#else + typedef unsigned int uint64_t; +#endif + + /** void type (for opaque pointers only) */ typedef void ALvoid; diff --git a/make/stub_includes/openal/alc-types.h b/make/stub_includes/openal/alc-types.h index 222a7a8..ea96803 100644 --- a/make/stub_includes/openal/alc-types.h +++ b/make/stub_includes/openal/alc-types.h @@ -79,6 +79,16 @@ typedef double ALCdouble; /** void type (for opaque pointers only) */ typedef void ALCvoid; +/** intptr_t */ +#if defined(_WIN64) + typedef __int64 intptr_t; +#elif defined(__ia64__) || defined(__x86_64__) + typedef long int intptr_t; +#else + typedef int intptr_t; +#endif + + #if defined(__cplusplus) } /* extern "C" */ #endif -- cgit v1.2.3