beetle-pce-fast-libretro/pce_fast/input.h
2014-11-25 07:49:36 +01:00

22 lines
380 B
C

#ifndef __PCE_INPUT_H
#define __PCE_INPUT_H
#include "mednafen.h"
#ifdef __cplusplus
extern "C" {
#endif
void PCEINPUT_SetInput(int port, const char* type, void* ptr);
uint8 INPUT_Read(unsigned int A);
void INPUT_Write(unsigned int A, uint8 V);
void INPUT_Frame(void);
int INPUT_StateAction(StateMem* sm, int load);
void INPUT_FixTS(void);
#ifdef __cplusplus
}
#endif
#endif