39.1 Overview

MiscBase contains various functions and data that doesn't fit anywhere else. It currently looks like this:

 
typedef struct _hwMiscBase
{
    UBYTE *VeraSans;
    UBYTE *VeraMono;
    UBYTE *VeraSerif;
    int sizeof_VeraSans;
    int sizeof_VeraMono;
    int sizeof_VeraSerif;
} hwMiscBase;

Here's a description of the individual structure members:

VeraSans:
Contains a pointer to the raw data of the Bitstream Vera Sans TrueType font. The size of this buffer is stored in the sizeof_VeraSans member. Bitstream Vera Sans is a font that is free for commercial use as long as the font license is included.

VeraMono:
Contains a pointer to the raw data of the Bitstream Vera Sans Mono TrueType font. The size of this buffer is stored in the sizeof_VeraMono member. Bitstream Vera Sans Mono is a font that is free for commercial use as long as the font license is included.

VeraSerif:
Contains a pointer to the raw data of the Bitstream Vera Serif TrueType font. The size of this buffer is stored in the sizeof_VeraSerif member. Bitstream Vera Serif is a font that is free for commercial use as long as the font license is included.

MiscBase is available since Hollywood 5.0.

The implementations of MiscBase in Hollywood Designer and Hollywood are identical.


Show TOC