revert between 56095 -> 55830 in arch
[AROS.git] / workbench / devs / AHI / Drivers / AROS / DriverData.h
blobf07972425960ca9d83915ba3ea14933e4e9e9e46
1 #ifndef AHI_Drivers_AROS_DriverData_h
2 #define AHI_Drivers_AROS_DriverData_h
4 #include <exec/libraries.h>
5 #include <dos/dos.h>
6 #include <proto/dos.h>
7 #include <proto/oss.h>
9 #include "DriverBase.h"
11 struct AROSBase
13 struct DriverBase driverbase;
16 #define DRIVERBASE_SIZEOF (sizeof (struct AROSBase))
18 struct AROSData
20 struct DriverData driverdata;
21 UBYTE flags;
22 UBYTE pad1;
23 BYTE mastersignal;
24 BYTE slavesignal;
25 struct Process* mastertask;
26 struct Process* slavetask;
27 struct AROSBase* ahisubbase;
28 APTR mixbuffer;
32 #endif /* AHI_Drivers_AROS_DriverData_h */