|
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 m
Length: 1199 (0x4af) Types: TextFile Names: »mftypes.BSD4_n.h«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/Unsupported/MFpxl/mflib/mftypes.BSD4_n.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦beba6c409⟧ »unix3.0/Unsupported.tar.Z« └─⟦25c524ae4⟧ └─⟦this⟧ »Unsupported/MFpxl/mflib/mftypes.BSD4_n.h«
/* $Header: mftypes.h,v 1.0 86/01/31 15:00:10 richards Released $ */ /* * MFTYPES.H -- typedef definitions for Pascal-to-C interfaces, dependent * on Pascal compiler in use at local installation */ #ifdef PYRAMID #define MAXFILENAMELEN 256 typedef int integer; typedef int fraction; typedef char UNIX_file_name_char; typedef int ASCIIcode; typedef int eightbits; typedef int screencol; typedef int screenrow; typedef int pixelcolor; typedef screencol * transspec; typedef struct iorec * text; typedef struct bytefile_datum bytefile; typedef struct iorec * wordfile; #ifdef FILE struct bytefile_datum { FILE *b_fp; integer *b_locptr; char b_file_name[MAXFILENAMELEN]; }; #endif #else #define MAXFILENAMELEN 256 typedef int integer; typedef int fraction; typedef char UNIX_file_name_char; typedef char ASCIIcode; typedef short eightbits; typedef short screencol; typedef short screenrow; typedef short pixelcolor; typedef screencol * transspec; typedef struct iorec * text; typedef struct bytefile_datum bytefile; typedef struct iorec * wordfile; #ifdef FILE struct bytefile_datum { FILE *b_fp; integer *b_locptr; char b_file_name[MAXFILENAMELEN]; }; #endif #endif