2019-09-01 15:40:25 +00:00
|
|
|
#include <assert.h>
|
2019-05-18 03:48:21 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "amex/amex.h"
|
2019-05-18 03:48:21 +00:00
|
|
|
#include "amex/config.h"
|
|
|
|
|
2019-06-04 02:28:44 +00:00
|
|
|
#include "board/config.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "board/sg-reader.h"
|
2019-06-04 02:28:44 +00:00
|
|
|
|
2021-06-16 10:08:08 +00:00
|
|
|
#include "hooklib/config.h"
|
|
|
|
#include "hooklib/dvd.h"
|
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
#include "idzhook/config.h"
|
2021-06-12 16:40:19 +00:00
|
|
|
#include "idzhook/idz-dll.h"
|
2019-05-18 03:48:21 +00:00
|
|
|
|
|
|
|
#include "platform/config.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "platform/platform.h"
|
2019-05-18 03:48:21 +00:00
|
|
|
|
2021-06-12 16:40:19 +00: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 03:48:21 +00:00
|
|
|
void idz_hook_config_load(
|
|
|
|
struct idz_hook_config *cfg,
|
|
|
|
const wchar_t *filename)
|
|
|
|
{
|
|
|
|
assert(cfg != NULL);
|
|
|
|
assert(filename != NULL);
|
|
|
|
|
2019-11-03 14:52:33 +00:00
|
|
|
platform_config_load(&cfg->platform, filename);
|
2019-05-18 03:48:21 +00:00
|
|
|
amex_config_load(&cfg->amex, filename);
|
2019-06-04 02:28:44 +00:00
|
|
|
aime_config_load(&cfg->aime, filename);
|
2021-06-12 16:40:19 +00:00
|
|
|
idz_dll_config_load(&cfg->dll, filename);
|
2019-11-03 21:12:58 +00:00
|
|
|
zinput_config_load(&cfg->zinput, filename);
|
2021-06-16 10:08:08 +00:00
|
|
|
dvd_config_load(&cfg->dvd, filename);
|
2019-11-03 21:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 03:48:21 +00:00
|
|
|
}
|