17 Data Structures
TQ3UnknownTextData
data type.
typedef struct TQ3UnknownTextData { char *objectName; /*'\0' terminated*/ char *contents; /*'\0' terminated*/ } TQ3UnknownTextData;An unknown binary data structure is defined by theobjectName
A pointer to the name of the unknown text object. This name is a C string terminated by the null character ('\0').contents
A pointer to the contents of the unknown text object. This string is a C string terminated by the null character ('\0').
TQ3UnknownBinaryData
data type.
typedef struct TQ3UnknownBinaryData { TQ3ObjectType objectType; unsigned long size; TQ3Endian byteOrder; char *contents; } TQ3UnknownBinaryData;objectType
The type of the data in the unknown binary object.size
The size, in bytes, of the data in the unknown binary object.byteOrder
The order in which the bytes in a word are addressed. This field must containkQ3EndianBig
orkQ3EndianLittle
.contents
A pointer to a copy of the data of the unknown binary object.
Let us know what you think of these prototype pages.
Generated with Harlequin WebMaker