|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T f
Length: 853 (0x355) Types: TextFile Names: »fontnode.h«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./DVIware/laser-setters/quicspool/src/fontnode.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« └─⟦ca79c7339⟧ └─⟦this⟧ »DVIware/laser-setters/quicspool/src/fontnode.h«
/* $Header: fontnode.h,v 1.1 88/01/15 13:04:00 simpson Rel $ */ /* $Log: fontnode.h,v $ * Revision 1.1 88/01/15 13:04:00 simpson * initial release * * Revision 0.1 87/12/11 18:30:54 simpson * beta test * */ #include <local/standard.h> /* The following are flag masks */ #define PORT 1 /* Portrait mode */ #define RAM 2 /* This is a ram font */ #define LOADED 4 /* Font is currently loaded in memory */ #define PRELOADED 8 /* Font was in ram memory on startup */ /* All fonts may have the following information stored about them, regardless * of whether we are using troff, TeX, etc. */ struct FontNode { Bits flags; int blocksize; /* in printer */ int qmsnumber; char *localinfo; /* Info local to typesetting program */ struct FontNode *next; /* Store fonts as singly linked list */ };