Essential Tools Module User's Guide : Appendix B Constants, Typedefs, Pointers, and Enumerations : Typedefs
Typedefs
typedef
unsigned short
RWClassID;
// defs.h //
Unique for each class
typedef
int
RWBoolean;
// defs.h // // //
TRUE or FALSE (if compiler does not support bool). Use of RWBoolean is deprecated, but this typedef is kept for backward compatibility.
typedef
bool
RWBoolean;
// defs.h // //
bool literal (if compiler supports bool). Use of RWBoolean is deprecated, but this typedef is kept for backward compatibility.
typedef
unsigned char
RWByte;
// defs.h
Bitflag atomic
typedef
RWCollectable*
RWCollectable;
// tooldefs.h //
Needed for tokenizing
typedef
unsigned short
RWErrNo;
// defs.h //
Used in error handler
typedef
long
RWoffset;
// tooldefs.h //
Used for file offsets
typedef
unsigned long
RWspace;
// tooldefs.h //
Used for file records
typedef
long
RWstoredValue;
// tooldefs.h //
Used for file offsets
typedef
void*
RWvoid;
// tooldefs.h //
For arrays of void*