1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-01-10 13:11:53 +01:00

35 lines
794 B
C
Raw Normal View History

#include <assert.h>
2019-05-17 23:48:21 -04:00
#include <stddef.h>
2019-11-05 20:11:25 -05:00
#include "amex/amex.h"
2019-05-17 23:48:21 -04:00
#include "amex/config.h"
#include "board/config.h"
2019-11-05 20:11:25 -05:00
#include "board/sg-reader.h"
2019-05-17 23:48:21 -04:00
#include "idzhook/config.h"
#include "platform/config.h"
2019-11-05 20:11:25 -05:00
#include "platform/platform.h"
2019-05-17 23:48:21 -04: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-17 23:48:21 -04:00
amex_config_load(&cfg->amex, filename);
aime_config_load(&cfg->aime, filename);
2019-11-03 16:12:58 -05: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-17 23:48:21 -04:00
}