mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
10 lines
332 B
Text
10 lines
332 B
Text
|
Note: JFAud makes the following assumptions about the datatypes your compiler defines.
|
||
|
sizeof(char) = 1
|
||
|
sizeof(short) = 2
|
||
|
sizeof(int) = 4
|
||
|
sizeof(long) = 4 (on 32bit), 8 (on 64bit)
|
||
|
sizeof(long long) = 8
|
||
|
sizeof(long) = sizeof(void *)
|
||
|
|
||
|
As long as this is true, JFAud is compatible with 32 and 64bit use.
|