mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2025-01-09 23:41:35 +01:00
12 lines
237 B
C
12 lines
237 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "swdcio/swdcio.h"
|
||
|
|
||
|
struct swdc_io_backend {
|
||
|
void (*get_opbtns)(uint8_t *opbtn);
|
||
|
void (*get_gamebtns)(uint16_t *gamebtn);
|
||
|
void (*get_analogs)(struct swdc_io_analog_state *state);
|
||
|
};
|