-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsystem_includes.h
53 lines (40 loc) · 1.03 KB
/
system_includes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef __SYSTEM_INCLUDES_H__
#define __SYSTEM_INCLUDES_H__
#ifndef __SDL_WRAPPER__
#include <exec/types.h>
#include <exec/ports.h>
#include <devices/inputevent.h>
#include <graphics/gfx.h>
#include <graphics/rastport.h>
#include <graphics/rpattr.h>
#include <graphics/text.h>
#include <intuition/intuition.h>
#include <datatypes/pictureclass.h>
#include <proto/exec.h>
#include <proto/dos.h>
#include <proto/intuition.h>
#include <proto/picasso96api.h>
#include <proto/datatypes.h>
#include <proto/graphics.h>
#include <proto/diskfont.h>
#include <proto/asl.h>
#include <proto/ahi.h>
#include <proto/keymap.h>
#include <devices/timer.h>
// Just for the requester...
#define ALL_REACTION_CLASSES
#define ALL_REACTION_MACROS
#include <reaction/reaction.h>
#else
#ifdef __APPLE__
#include <SDL/SDL.h>
#include <SDL_image/SDL_image.h>
#include <SDL_ttf/SDL_ttf.h>
#else
#include <SDL.h>
#include <SDL_image.h>
#include <SDL_ttf.h>
#endif /* __APPLE__*/
#include <sdl_wrapper.h>
#endif /* __SDL_WRAPPER */
#endif /* __SYSTEM_INCLUDES_H__ */