home *** CD-ROM | disk | FTP | other *** search
- /*
- Data2AOF.h
- Copyright © 1995 A. M. Pereira
-
- History:
- Mon 03rd Jul 95 AMP - created
- */
-
- /* Size of AOF file with no label and no data */
- #define AOFSIZE 322
-
-
- typedef struct
- {
- int chunkfileid;
- int maxchunks;
- int numchunks;
- } chunkfile;
-
- typedef struct
- {
- char id[8];
- int offset;
- int size;
- } chunkheader;
-
- typedef struct
- {
- int symbol;
- int type;
- int value;
- int area;
- } symtentry;
-
- typedef struct
- {
- int id;
- int aofver;
- int areas;
- int symbols;
- int entryarea;
- int entryoffset;
- } objhead;
-
- typedef struct
- {
- int name;
- char al;
- char at;
- char dummy1;
- char dummy2;
- int size;
- int numreloc;
- int resvd;
- } areaheader;
-
-