3547
|
1 |
/*
|
|
2 |
* PascalImports.h
|
|
3 |
// fpciphonedel
|
|
4 |
//
|
|
5 |
// Created by Vittorio on 07/01/10.
|
|
6 |
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
7 |
*
|
|
8 |
*/
|
|
9 |
|
|
10 |
#ifndef PASCALIMPORTS
|
|
11 |
#define PASCALIMPORTS
|
|
12 |
|
|
13 |
#ifdef __cplusplus
|
|
14 |
extern "C" {
|
|
15 |
#endif
|
|
16 |
|
|
17 |
/* add C declarations below for all exported Pascal functions/procedure
|
|
18 |
* that you want to use
|
|
19 |
*/
|
|
20 |
|
|
21 |
void Game(const char *args[]);
|
|
22 |
void GenLandPreview(void);
|
|
23 |
|
|
24 |
|
|
25 |
void HW_versionInfo(short int*, char**);
|
|
26 |
|
|
27 |
void HW_click(void);
|
|
28 |
void HW_zoomIn(void);
|
|
29 |
void HW_zoomOut(void);
|
|
30 |
void HW_zoomReset(void);
|
|
31 |
void HW_ammoMenu(void);
|
|
32 |
|
|
33 |
void HW_allKeysUp(void);
|
|
34 |
|
|
35 |
void HW_walkLeft(void);
|
|
36 |
void HW_walkRight(void);
|
|
37 |
void HW_aimUp(void);
|
|
38 |
void HW_aimDown(void);
|
|
39 |
void HW_shoot(void);
|
|
40 |
void HW_jump(void);
|
|
41 |
void HW_backjump(void);
|
|
42 |
|
|
43 |
void HW_chat(void);
|
|
44 |
void HW_tab(void);
|
|
45 |
void HW_pause(void);
|
|
46 |
|
|
47 |
void HW_cursorUp(int);
|
|
48 |
void HW_cursorDown(int);
|
|
49 |
void HW_cursorLeft(int);
|
|
50 |
void HW_cursorRight(int);
|
|
51 |
|
|
52 |
void HW_terminate(BOOL);
|
|
53 |
|
|
54 |
void HW_setLandscape(BOOL);
|
3551
|
55 |
void HW_setCursor(int x, int y);
|
|
56 |
BOOL HW_isAmmoOpen(void);
|
3547
|
57 |
#ifdef __cplusplus
|
|
58 |
}
|
|
59 |
#endif
|
|
60 |
|
|
61 |
#endif
|