Basic Data Types

Top 

The script file compiler supports the following data types:

 

 

---------------------------------------------------------------

signed char          8      1      -128...+127

unsigned char      8      1      0...255

signed short        16     2      -32768...+32767

unsigned short    16     2      0...65535

signed int            16      2      -32768...+32767

unsigned int        16      2      0...65535

signed long         32      4      -2147483648...2147483647

unsigned long     32      4      0...4294967295

float                     32      4      +/-1.17549435E-38...+/-3.40282347E+38

 

The "pure" int type coincides with the signed int type.

The long type is equivalent to the signed long.

The short type is equivalent to the signed short.

The char type is equivalent to the signed char.