rnd-20040928-1-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 UpdateEngineValues(int, int);
28 extern void DrawGameDoorValues_EM(int, int, int, int);
29 extern int getGameFrameDelay_EM(int);
30 extern void PlayLevelSound_EM(int, int, int, int);
31
32
33 /* ========================================================================= */
34 /* functions and definitions exported from game_em to main program           */
35 /* ========================================================================= */
36
37 #include "main_em.h"
38
39 extern struct LevelInfo_EM native_em_level;
40
41 extern void em_open_all();
42 extern void em_close_all();
43
44 extern void InitGameEngine_EM();
45 extern void GameActions_EM(byte);
46
47 boolean LoadNativeLevel_EM(char *);
48
49
50 #endif  /* GAME_EM_H */