unixio.device, intended to replace duplicated code in UNIX-hosted parallel and serial...
[AROS.git] / arch / all-unix / devs / unixio / unixio_device.h
blobd190aa69cbf07746f4fdae98f56c57de8b909e3e
1 struct Queue
3 struct IOStdReq *Active;
4 APTR Data;
5 ULONG Length;
6 };
8 struct UnitData
10 struct Queue readQueue;
11 struct Queue writeQueue;
12 void (*errorCallback)(struct IOStdReq *req, int err);
13 BOOL stopped;
14 unsigned char *termarray;