home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __dl_font2_h
- #define __dl_font2_h
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifndef __dl_font_h
- #include "Font.h"
- #endif
- typedef struct font2_block {
- font_handle handle;
- font_info info;
- }
- font2_block;
- os_error *Font2_ClaimFont( font2_block **font2, char *name, int sizex, int sizey);
- os_error *Font2_ReclaimFont( font2_block **font2, char *name, int xsize, int ysize);
- void Font2_ReleaseFont( font2_block **font2);
- void Font2_Initialise( void);
- #ifdef __cplusplus
- }
- #endif
- #endif
-