mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-14 17:17:36 +01:00
13 lines
276 B
C
13 lines
276 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "idacio/idacio.h"
|
|
|
|
struct idac_io_backend {
|
|
void (*get_opbtns)(uint8_t *opbtn);
|
|
void (*get_gamebtns)(uint8_t *gamebtn);
|
|
void (*get_shifter)(uint8_t *gear);
|
|
void (*get_analogs)(struct idac_io_analog_state *state);
|
|
};
|