mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-30 15:54:27 +01:00
01be6ee33c
Thanks @domeori https://dev.s-ul.net/domeori/segatools/-/tree/mr-imports
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);
|