[apm3] add DInput and XInput support

This commit is contained in:
2025-07-20 18:11:34 +02:00
parent e2e4b37e3f
commit e974a76fe6
21 changed files with 1157 additions and 176 deletions

10
games/apm3io/backend.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
#include "apm3io/apm3io.h"
struct apm3_io_backend {
void (*get_opbtns)(uint8_t *opbtn);
void (*get_gamebtns)(uint16_t *gamebtn);
};