1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-14 17:17:36 +01:00
segatools-dniel97/idzhook/config.c

60 lines
1.3 KiB
C
Raw Normal View History

#include <assert.h>
2019-05-18 05:48:21 +02:00
#include <stddef.h>
2019-11-06 02:11:25 +01:00
#include "amex/amex.h"
2019-05-18 05:48:21 +02:00
#include "amex/config.h"
#include "board/config.h"
2019-11-06 02:11:25 +01:00
#include "board/sg-reader.h"
#include "gfxhook/config.h"
#include "hooklib/config.h"
#include "hooklib/dvd.h"
2019-05-18 05:48:21 +02:00
#include "idzhook/config.h"
2021-06-12 18:40:19 +02:00
#include "idzhook/idz-dll.h"
2019-05-18 05:48:21 +02:00
#include "platform/config.h"
2019-11-06 02:11:25 +01:00
#include "platform/platform.h"
2019-05-18 05:48:21 +02:00
2021-06-12 18:40:19 +02:00
void idz_dll_config_load(
struct idz_dll_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
GetPrivateProfileStringW(
L"idzio",
L"path",
L"",
cfg->path,
_countof(cfg->path),
filename);
}
2019-05-18 05:48:21 +02:00
void idz_hook_config_load(
struct idz_hook_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
platform_config_load(&cfg->platform, filename);
2019-05-18 05:48:21 +02:00
amex_config_load(&cfg->amex, filename);
aime_config_load(&cfg->aime, filename);
dvd_config_load(&cfg->dvd, filename);
gfx_config_load(&cfg->gfx, filename);
2021-06-12 18:40:19 +02:00
idz_dll_config_load(&cfg->dll, filename);
2019-11-03 22:12:58 +01:00
zinput_config_load(&cfg->zinput, filename);
}
void zinput_config_load(struct zinput_config *cfg, const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
cfg->enable = GetPrivateProfileIntW(L"zinput", L"enable", 1, filename);
2019-05-18 05:48:21 +02:00
}