author | koda |
Thu, 18 Mar 2010 02:18:50 +0000 | |
changeset 3015 | 20a9c8160e82 |
parent 2805 | 36a8cebb91e8 |
child 3063 | 0092dc37fbd6 |
permissions | -rw-r--r-- |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
1 |
/* |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
2 |
* PascalImports.h |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
3 |
// fpciphonedel |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
4 |
// |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
5 |
// Created by Vittorio on 07/01/10. |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
6 |
// Copyright __MyCompanyName__ 2010. All rights reserved. |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
7 |
* |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
8 |
*/ |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
9 |
|
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
10 |
#ifndef PASCALIMPORTS |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
11 |
#define PASCALIMPORTS |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
12 |
|
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
13 |
#ifdef __cplusplus |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
14 |
extern "C" { |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
15 |
#endif |
2682 | 16 |
|
17 |
/* add C declarations below for all exported Pascal functions/procedure |
|
18 |
* that you want to use |
|
19 |
*/ |
|
2698 | 20 |
|
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2698
diff
changeset
|
21 |
void Game(const char *args[]); |
2698 | 22 |
|
23 |
||
2799 | 24 |
void HW_versionInfo(short int*, char**); |
2698 | 25 |
|
2682 | 26 |
void HW_click(void); |
27 |
void HW_zoomIn(void); |
|
28 |
void HW_zoomOut(void); |
|
2683 | 29 |
void HW_zoomReset(void); |
2682 | 30 |
void HW_ammoMenu(void); |
2683 | 31 |
|
2682 | 32 |
void HW_allKeysUp(void); |
33 |
||
34 |
void HW_walkLeft(void); |
|
35 |
void HW_walkRight(void); |
|
36 |
void HW_aimUp(void); |
|
37 |
void HW_aimDown(void); |
|
38 |
void HW_shoot(void); |
|
3015 | 39 |
void HW_jump(void); |
40 |
void HW_backjump(void); |
|
2682 | 41 |
|
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2702
diff
changeset
|
42 |
void HW_chat(void); |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2702
diff
changeset
|
43 |
void HW_tab(void); |
2805 | 44 |
void HW_pause(void); |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2702
diff
changeset
|
45 |
|
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
46 |
#ifdef __cplusplus |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
47 |
} |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
48 |
#endif |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
49 |
|
2696 | 50 |
#endif |