4nes4snes/gamepad.h

23 lines
435 B
C

#ifndef _gamepad_h__
#define _gamepad_h__
typedef struct {
// size of reports built by buildReport
int report_size;
int reportDescriptorSize;
void *reportDescriptor; // must be in flash
int deviceDescriptorSize; // if 0, use default
void *deviceDescriptor; // must be in flash
void (*init)(void);
void (*update)(void);
char (*changed)(void);
void (*buildReport)(unsigned char *buf);
} Gamepad;
#endif // _gamepad_h__