diff options
author | Chris Robinson <[email protected]> | 2009-12-24 15:41:45 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-12-24 15:41:45 -0800 |
commit | 7f0c6629b9ec1ec1cf11dfbd4a6bba43d3cce9e2 (patch) | |
tree | fa004acfd41122045544f621ab920ec0275d44ea /OpenAL32 | |
parent | f6ca39403d31b52a0ca10d402d0c0a9e87e1e667 (diff) |
Use a 64-bit value to scale potentially-large numbers
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index b33f797b..fc9cf71d 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -13,6 +13,21 @@ #include "AL/alc.h" #include "AL/alext.h" +#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 + #ifdef _WIN32 #ifndef _WIN32_WINNT |