add a missing section header table index conversion
[tangerine.git] / workbench / devs / fdsk_device_gcc.h
blob83a91b0f742ebf8fe76cfdcec91be3805dc7f16e
1 #ifndef FDSK_DEVICE_GCC_H
2 #define FDSK_DEVICE_GCC_H
4 /*
5 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <aros/libcall.h>
10 #include <exec/devices.h>
11 #include <exec/semaphores.h>
12 #include <exec/lists.h>
13 #include <exec/ports.h>
14 #include <dos/dos.h>
16 struct fdskbase
18 struct Device device;
19 struct SignalSemaphore sigsem;
20 struct MsgPort port;
21 struct MinList units;
24 struct unit
26 struct Message msg;
27 struct fdskbase *fdskbase;
28 ULONG unitnum;
29 ULONG usecount;
30 struct MsgPort port;
31 BPTR file;
34 #endif