1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-01-24 07:04:08 +01:00

18 lines
307 B
C
Raw Normal View History

2021-12-21 00:02:17 -05:00
#pragma once
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
struct mercury_io_config {
uint8_t vk_test;
uint8_t vk_service;
uint8_t vk_1p_btn[9];
uint8_t vk_2p_btn[9];
};
void mercury_io_config_load(
struct mercury_io_config *cfg,
const wchar_t *filename);