cocoaTouch/otherSrc/PascalImports.h
author koda
Sat, 16 Jan 2010 17:30:37 +0000
changeset 2698 90585aba87ad
parent 2697 75880595a9f1
child 2702 48fc46a922fd
permissions -rw-r--r--
objc/pascal finally working hwengine becomes a library for the iphone use custom sdl_image to fix bug remove thread code and forward_argc/forward_argv

/*
 *  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(void);


	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);
	
#ifdef __cplusplus
}
#endif

#endif