Initial import of work-in-progress of Poseidon port.
[cake.git] / rom / usb / classes / hub / common.h
blobfeae1e480dc13e2a10b2380780e1d2967c7fdd4e
2 #include LC_LIBDEFS_FILE
4 #include <aros/libcall.h>
5 #include <aros/asmcall.h>
6 #include <aros/symbolsets.h>
8 #include <exec/types.h>
9 #include <exec/lists.h>
10 #include <exec/alerts.h>
11 #include <exec/memory.h>
12 #include <exec/libraries.h>
13 #include <exec/interrupts.h>
14 #include <exec/semaphores.h>
15 #include <exec/execbase.h>
16 #include <exec/devices.h>
17 #include <exec/io.h>
18 #include <exec/ports.h>
19 #include <exec/errors.h>
20 #include <exec/resident.h>
21 #include <exec/initializers.h>
23 #include <devices/timer.h>
24 #include <devices/input.h>
25 #include <utility/utility.h>
26 #include <dos/dos.h>
27 #include <intuition/intuition.h>
29 #include <devices/usb.h>
30 #include <devices/usbhardware.h>
31 #include <libraries/usbclass.h>
33 #include <string.h>
34 #include <stddef.h>
35 #include <stdio.h>
37 #include <proto/dos.h>
38 #include <proto/commodities.h>
39 #include <proto/intuition.h>
40 #include <proto/poseidon.h>
41 #include <proto/utility.h>
42 #include <proto/keymap.h>
43 #include <proto/layers.h>
44 #include <proto/input.h>
45 #include <proto/expansion.h>
46 #include <proto/exec.h>
47 #include <proto/muimaster.h>
49 #define NewList NEWLIST
51 #include <stdarg.h>
53 #define min(x,y) (((x) < (y)) ? (x) : (y))
54 #define max(x,y) (((x) > (y)) ? (x) : (y))