rnd-20040927-2-src
[rocksndiamonds.git] / src / game_em / game_em.h
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * game_em.h                                                *
12 ***********************************************************/
13
14 #ifndef GAME_EM_H
15 #define GAME_EM_H
16
17 #define GAME_EM_VERSION_1_0_0
18
19
20 /* ========================================================================= */
21 /* functions and definitions imported from main program to game_em           */
22 /* ========================================================================= */
23
24 #include "../libgame/libgame.h"
25
26 extern void SetBitmaps_EM(Bitmap **);
27 extern void DrawGameDoorValues_EM(int, int, int, int);
28 extern int getGameFrameDelay_EM(int);
29 extern void PlayLevelSound_EM(int, int, int, int);
30
31
32 /* ========================================================================= */
33 /* functions and definitions exported from game_em to main program           */
34 /* ========================================================================= */
35
36 #include "main_em.h"
37
38 extern struct LevelInfo_EM native_em_level;
39
40 extern void em_open_all();
41 extern void em_close_all();
42
43 extern void InitGameEngine_EM();
44 extern void GameActions_EM(byte);
45
46 boolean LoadNativeLevel_EM(char *);
47
48
49 #endif  /* GAME_EM_H */