home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / code / desklib / DeskLib / !DeskLib / h / Font2 < prev    next >
Encoding:
Text File  |  1995-08-28  |  489 b   |  23 lines

  1.  
  2. #ifndef __dl_font2_h
  3. #define __dl_font2_h
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef __dl_font_h
  8. #include "Font.h"
  9. #endif
  10. typedef struct font2_block {
  11. font_handle handle; 
  12. font_info info; 
  13. }
  14. font2_block;
  15. os_error *Font2_ClaimFont( font2_block **font2, char *name, int sizex, int sizey);
  16. os_error *Font2_ReclaimFont( font2_block **font2, char *name, int xsize, int ysize);
  17. void Font2_ReleaseFont( font2_block **font2);
  18. void Font2_Initialise( void);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif
  23.