home *** CD-ROM | disk | FTP | other *** search
- /* set the right system type before compiling */
-
- #define UNIX 1 /* or Amiga */
- #define VMS 0
-
-
- #define AUCDATAFILE "auc.dat"
- #define MAXNUMKEYS 50
-
- typedef struct dummy0 {
- float num;
- char *title;
- char *description;
- } key_struct;
-
- typedef struct dummy1 {
- char *name;
- char *email;
- char *system;
- int numkeys;
- float *keys;
- char *comment;
- struct dummy1 *next;
- } entry;
-
-
-