home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / HF-SCL1.DMS / in.adf / inclib.lha / Inc / prefs / font.inc next >
Encoding:
Text File  |  1996-09-01  |  384 b   |  22 lines

  1. include "inc/exec/types.inc";
  2. include "inc/libraries/iffparse.inc";
  3. include "inc/graphics/text.inc";
  4.  
  5. def FONTNAMESIZE = (128);
  6.  
  7. struct FontPrefs is
  8.   fp_Reserved[3]:long;
  9.   fp_Reserved2:uword;
  10.   fp_Type:uword;
  11.   fp_FrontPen:ubyte;
  12.   fp_BackPen:ubyte;
  13.   fp_DrawMode:ubyte;
  14.   fp_TextAttr:TextAttr;
  15.   fp_Name[128]:byte;
  16. ;
  17.  
  18. def FP_WBFONT = 0;
  19. def FP_SYSFONT = 1;
  20. def FP_SCREENFONT = 2;
  21.  
  22.