Added C++ wrappers for some of the newer .h files

This commit is contained in:
Gordon Henderson
2012-08-25 12:31:14 +01:00
parent c6799ea998
commit 4666573910
4 changed files with 49 additions and 0 deletions

View File

@@ -33,5 +33,13 @@
#define NES_B 0x40
#define NES_A 0x80
#ifdef __cplusplus
extern "C" {
#endif
extern int setupNesJoystick (int dPin, int cPin, int lPin) ;
extern unsigned int readNesJoystick (int joystick) ;
#ifdef __cplusplus
}
#endif