1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-09 23:41:35 +01:00

20 lines
350 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;
2022-02-23 02:44:23 -05:00
uint8_t vk_coin;
uint8_t vk_vol_up;
uint8_t vk_vol_down;
uint8_t vk_cell[240];
2021-12-21 00:02:17 -05:00
};
void mercury_io_config_load(
struct mercury_io_config *cfg,
const wchar_t *filename);