mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 07:50:03 +00:00
22 lines
380 B
C
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
|