revert between 56095 -> 55830 in arch
[AROS.git] / rom / filesys / CDVDFS / src / device.h
bloba8114df2f754ab309e6e86e75d86e41b6ab4fc18
1 /* device.h: */
2 #ifndef ACDR_DEVICE_H
3 #define ACDR_DEVICE_H
5 #include <exec/types.h>
6 #include <exec/memory.h>
7 #include <exec/execbase.h>
8 #include <dos/dos.h>
9 #include <dos/dosextens.h>
10 #include <dos/dostags.h>
11 #include <dos/filehandler.h>
12 #include <devices/timer.h>
13 #include <devices/input.h>
14 #include <devices/inputevent.h>
15 #include <utility/date.h>
17 #include "generic.h"
19 typedef struct Interrupt INTERRUPT;
20 typedef struct Task TASK;
21 typedef struct FileLock LOCK; /* See LOCKLINK */
22 typedef struct FileInfoBlock FIB;
23 typedef struct DosPacket PACKET;
24 typedef struct Process PROC;
25 typedef struct DeviceNode DEVNODE;
26 typedef struct DosInfo DOSINFO;
27 typedef struct FileHandle FH;
28 typedef struct MsgPort PORT;
29 typedef struct Message MSG;
30 typedef struct MinList LIST;
31 typedef struct MinNode NODE;
32 typedef struct DateStamp STAMP;
33 typedef struct InfoData INFODATA;
35 #define FILE_DIR 1
36 #define FILE_FILE -1
38 #endif /* ACDR_DEVICE_H */