1 
2 #ifndef __SYSTEM_INCLUDES_H__
3 #define __SYSTEM_INCLUDES_H__
4 
5 #ifndef __SDL_WRAPPER__
6 
7 #include <exec/types.h>
8 #include <exec/ports.h>
9 
10 #include <devices/inputevent.h>
11 
12 #include <graphics/gfx.h>
13 #include <graphics/rastport.h>
14 #include <graphics/rpattr.h>
15 #include <graphics/text.h>
16 
17 #include <intuition/intuition.h>
18 
19 #include <datatypes/pictureclass.h>
20 
21 #include <proto/exec.h>
22 #include <proto/dos.h>
23 #include <proto/intuition.h>
24 #include <proto/picasso96api.h>
25 #include <proto/datatypes.h>
26 #include <proto/graphics.h>
27 #include <proto/diskfont.h>
28 #include <proto/asl.h>
29 #include <proto/ahi.h>
30 #include <proto/keymap.h>
31 
32 #include <devices/timer.h>
33 
34 // Just for the requester...
35 #define ALL_REACTION_CLASSES
36 #define ALL_REACTION_MACROS
37 #include <reaction/reaction.h>
38 
39 #else
40 
41 #include <SDL.h>
42 #include <SDL_image.h>
43 #include <SDL_ttf.h>
44 #include <sdl_wrapper.h>
45 
46 #endif /* __SDL_WRAPPER */
47 
48 #endif /* __SYSTEM_INCLUDES_H__ */
49