typedef struct HTMLTree {
HTMLObject ObjectType;
union {
/* This structure represents the contents of one <TEXT>...</TEXT> markup
*/
tTextStruct TextStruct;
struct {
int iLeft;
int iRight;
int iTop;
int iBottom;
char *zFileName;
}Image;
tTable Table;
}u;
struct HTMLTree *pNext;