author | koda |
Thu, 07 Jan 2010 22:49:25 +0000 | |
changeset 2683 | bad2a30d5d6c |
parent 2682 | d4c395f25db2 |
child 2691 | c0da3a98c01c |
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 |
*/ |
|
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
20 |
|
2682 | 21 |
void HW_click(void); |
22 |
void HW_zoomIn(void); |
|
23 |
void HW_zoomOut(void); |
|
2683 | 24 |
void HW_zoomReset(void); |
2682 | 25 |
void HW_ammoMenu(void); |
2683 | 26 |
|
2682 | 27 |
void HW_allKeysUp(void); |
28 |
||
29 |
void HW_walkLeft(void); |
|
30 |
void HW_walkRight(void); |
|
31 |
void HW_aimUp(void); |
|
32 |
void HW_aimDown(void); |
|
33 |
void HW_shoot(void); |
|
34 |
||
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
35 |
#ifdef __cplusplus |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
36 |
} |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
37 |
#endif |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
38 |
|
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
diff
changeset
|
39 |
#endif |