cocoaTouch/otherSrc/PascalImports.h
author smxx
Fri, 05 Feb 2010 13:47:25 +0000
changeset 2761 1467c7298b10
parent 2754 ad4f81fbfb76
child 2799 558b29bf00c5
permissions -rw-r--r--
General: * Updated svn ignore lists Engine: * Small update to en locale * Fixed line break conversion for gl.txt

/*
 *  PascalImports.h
//  fpciphonedel
//
//  Created by Vittorio on 07/01/10.
//  Copyright __MyCompanyName__ 2010. All rights reserved.
 *
 */

#ifndef PASCALIMPORTS
#define PASCALIMPORTS

#ifdef __cplusplus
extern "C" {
#endif
	
	/* add C declarations below for all exported Pascal functions/procedure
	 * that you want to use
	 */

	void Game(const char *args[]);


	int HW_protoVer(void);

	void HW_click(void);
	void HW_zoomIn(void);
	void HW_zoomOut(void);
	void HW_zoomReset(void);
	void HW_ammoMenu(void);
	
	void HW_allKeysUp(void);
	
	void HW_walkLeft(void);
	void HW_walkRight(void);
	void HW_aimUp(void);
	void HW_aimDown(void);
	void HW_shoot(void);
	
	void HW_chat(void);
	void HW_tab(void);
	
#ifdef __cplusplus
}
#endif

#endif