1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-25 01:40:11 +01:00
segatools-hay1tsme/board/config.c

17 lines
346 B
C
Raw Normal View History

2019-06-04 04:27:45 +02:00
#include <windows.h>
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include "board/config.h"
2019-11-06 01:40:00 +01:00
#include "board/sg-reader.h"
2019-06-04 04:27:45 +02:00
void aime_config_load(struct aime_config *cfg, const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
cfg->enable = GetPrivateProfileIntW(L"aime", L"enable", 1, filename);
}