00001 /* $Header: /opt/proj/minix/cvsroot/src/lib/ack/h/pc_file.h,v 1.1 2005/10/10 15:27:44 beng Exp $ */ 00002 /* 00003 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. 00004 * See the copyright notice in the ACK home directory, in the file "Copyright". 00005 */ 00006 #define WRBIT 0100000 00007 #define TXTBIT 040000 00008 #define EOFBIT 020000 00009 #define ELNBIT 010000 00010 #define WINDOW 04000 00011 #define MAGIC 0252 00012 00013 #define PC_BUFLEN 1024 00014 00015 struct file { 00016 char *ptr; 00017 unsigned flags; 00018 char *fname; 00019 int ufd; 00020 int size; 00021 int count; 00022 int buflen; 00023 char bufadr[PC_BUFLEN]; 00024 };
1.4.6