mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-15 09:37: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);
|
|
};
|