font_ext.h 600 Bytes

#ifndef __font_ext__
#define __font_ext__


/* sct 11/27/95 - Font types used by this application. */
enum
{
    kLettersFont,
    kPinFont,
    kDigit6Font
};

void font_init( Gfx ** );
void font_finish( Gfx ** );
void font_show_num( Gfx **, int );
void font_show_string( Gfx **, char *, Sprite *sp );

void font_set_font( int fontType );
void font_set_scale( double, double );
void font_set_color( unsigned char, unsigned char, unsigned char, unsigned char );
void font_set_win( int, int );
void font_set_pos( int, int );

void font_set_transparent( int, Sprite *sp );


#endif /* __font_ext__ */