mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-28 06:50:49 +01:00
a2db39c58c
Credits: - Coburn - domeori - Mitsuhide - OLEG - rakisaionji
17 lines
264 B
C
17 lines
264 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct fgo_io_config {
|
|
uint8_t vk_test;
|
|
uint8_t vk_service;
|
|
uint8_t vk_coin;
|
|
};
|
|
|
|
void fgo_io_config_load(
|
|
struct fgo_io_config *cfg,
|
|
const wchar_t *filename);
|