home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / code / andylib / h / fontmenu < prev    next >
Encoding:
Text File  |  1995-03-06  |  382 b   |  18 lines

  1. /* fontmenu.h - Build a standard font selector menu */
  2.  
  3. #ifndef __fontmenu_h
  4. #define __fontmenu_h
  5.  
  6. #include "menu.h"
  7. #include "msgs.h"
  8.  
  9. #define fontmenu_SYSFONT (msgs_lookup("fontmenu1:System font"))
  10.  
  11. void fontmenu_init(void);
  12. BOOL fontmenu_pathchanged(void);
  13. menu fontmenu_make(BOOL sysfont, char *dbname);
  14. void fontmenu_tick(char *name);
  15. char *fontmenu_decode(char *hit);
  16.  
  17. #endif
  18.