Lines 39-50
Link Here
|
39 |
|
39 |
|
40 |
#if (SIZEOF_LONG == 8) |
40 |
#if (SIZEOF_LONG == 8) |
41 |
# define SF_PLATFORM_S64(x) x##l |
41 |
# define SF_PLATFORM_S64(x) x##l |
42 |
#elif COMPILER_IS_GCC |
|
|
43 |
# define SF_PLATFORM_S64(x) x##ll |
44 |
#elif OS_IS_WIN32 |
42 |
#elif OS_IS_WIN32 |
45 |
# define SF_PLATFORM_S64(x) x##I64 |
43 |
# define SF_PLATFORM_S64(x) x##I64 |
46 |
#else |
44 |
#else |
47 |
# error "Don't know how to define a 64 bit integer constant." |
45 |
# define SF_PLATFORM_S64(x) x##ll |
48 |
#endif |
46 |
#endif |
49 |
|
47 |
|
50 |
|
48 |
|