home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <exec/lists.h>
- #include <exec/devices.h>
- #include <exec/io.h>
- #include <devices/timer.h>
- #include <devices/serial.h>
- #include <libraries/dos.h>
- #include <libraries/dosextens.h>
- #include <hardware/cia.h>
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <stdlib.h>
- #include <pwd.h>
- #include "version.h"
- #include "log.h"
- #include "fifo.h"
- #include <OwnDevUnit.h>
-
- #ifndef IO_STATF_READBREAK
- #define IO_STATF_READBREAK (IOSTF_READBREAK<<8)
- #endif
-
- #define arysize(ary) (sizeof(ary)/sizeof((ary)[0]))
- #define Prototype extern
-
- typedef struct IORequest IORequest;
- typedef struct timerequest Iot;
- typedef struct IOExtSer IOSer;
- typedef struct MsgPort MsgPort;
- typedef struct List List;
- typedef struct Node Node;
- typedef struct Message Message;
-
- typedef struct GMsg {
- struct Message Msg;
- short Cmd;
- long Data1;
- void *Data2;
- } GMsg;
-
- #include "protos.h"
- #include "getty_protos.h"
-