We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67a298 commit 2b3ec8dCopy full SHA for 2b3ec8d
units/sdlstdinc.inc
@@ -31,6 +31,20 @@ const
31
SDL_MAX_UINT32 = High(cuint32);
32
SDL_MIN_UINT32 = Low(cuint32);
33
34
+ {$IFDEF Has_Int64}
35
+ SDL_MAX_SINT64 = High(cint64);
36
+ SDL_MIN_SINT64 = Low(cint64);
37
+
38
+ SDL_MAX_UINT64 = High(cuint64);
39
+ SDL_MIN_UINT64 = Low(cuint64);
40
+ {$ELSE}
41
+ SDL_MAX_SINT64: cuint64 = (hi: SDL_MAX_SINT32; lo: SDL_MAX_UINT32);
42
+ SDL_MIN_SINT64: cuint64 = (hi: SDL_MIN_SINT32; lo: 0);
43
44
+ SDL_MAX_UINT64: cuint64 = (hi: SDL_MAX_UINT32; lo: SDL_MAX_UINT32);
45
+ SDL_MIN_UINT64: cuint64 = (hi: 0; lo: 0);
46
+ {$ENDIF}
47
48
SDL_FLT_EPSILON = cfloat(1.1920928955078125e-07);
49
50
type
0 commit comments