mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-12-11 03:55:58 +01:00
17 lines
261 B
C
17 lines
261 B
C
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
struct cm_io_config {
|
||
|
uint8_t vk_test;
|
||
|
uint8_t vk_service;
|
||
|
uint8_t vk_coin;
|
||
|
};
|
||
|
|
||
|
void cm_io_config_load(
|
||
|
struct cm_io_config *cfg,
|
||
|
const wchar_t *filename);
|