diff options
author | Chris Robinson <[email protected]> | 2013-11-27 05:09:33 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-27 05:09:33 -0800 |
commit | 6a76f50fa3814de466e9a803e0d2051335222341 (patch) | |
tree | 0106579c15c7646752050406c7a4c9eae98e1128 | |
parent | 37fa82f138043b8503c2a05b5959145da46b5062 (diff) |
Ensure UINT64_MAX is defined
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index fb0d08bd..09a21964 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -56,6 +56,10 @@ typedef ptrdiff_t ALsizeiptrEXT; #endif #endif +#ifndef UINT64_MAX +#define UINT64_MAX U64(18446744073709551615) +#endif + #ifndef UNUSED #if defined(__cplusplus) #define UNUSED(x) |