DSCore


Discussion

DSCore is included if any DS header is included. It provides base functionality including data types, the libds version, and compiler settings.

Constants


FALSE


const int FALSE = 0;
Discussion

Define FALSE as a boolean type, if it's not already.


TRUE


const int TRUE = (!FALSE);
Discussion

Define TRUE as a boolean type, if it's not already.

Typedefs


BOOL


typedef int BOOL;
Discussion

Create a TRUE/FALSE type called BOOL. This already exists on Win32 and qt.

(Last Updated 9/24/2004)