1: /* 2: * Copyright (c) 1984, 1985 Xerox Corp. 3: * 4: * define a font configuration record 5: */ 6: 7: #define MAXTOKENSIZE 40 8: 9: struct FontConfig { 10: char FontPt1[MAXTOKENSIZE]; 11: char FontPt2[MAXTOKENSIZE]; 12: char FontPt3[MAXTOKENSIZE]; 13: char TroffName[MAXTOKENSIZE]; 14: char MapFile[MAXTOKENSIZE]; 15: struct FontConfig *Next; 16: int SeenFlag; /* was this font actually there? */ 17: };