Table Of Contents

Previous topic

Version Numbers

Next topic

Path Functions

Type Definitions

Definition of types used in the Speect engine. These types are platform independent.

Signed

typedef int sint

Type definition of a signed integer.

typedef int8_t sint8

Type definition of a signed 1 byte integer.

typedef int16_t sint16

Type definition of a signed 2 byte integer.

typedef int32_t sint32

Type definition of a signed 4 byte integer.

typedef long int slong

Type definition of a signed long integer.

typedef signed char schar

Type definition of a signed char.

Unsigned

typedef unsigned int uint

Type definition of an unsigned integer.

typedef u_int8_t uint8

Type definition of an unsigned 1 byte integer.

typedef u_int16_t uint16

Type definition of an unsigned 2 byte integer.

typedef u_int32_t uint32

Type definition of an unsigned 4 byte integer.

typedef unsigned long int ulong

Type definition of an unsigned long integer.

typedef unsigned char uchar

Type definition of an unsigned char.

Boolean

typedef u_int8_t s_bool

Type definition of a boolean type (TRUE or FALSE).

Byte

typedef uint8 s_byte

Type definition of a 1 byte data type.