2019-05-18 03:35:53 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
2019-10-20 00:37:43 +00:00
|
|
|
#include <stdbool.h>
|
2019-05-18 03:35:53 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "amex/amex.h"
|
2019-05-18 03:35:53 +00:00
|
|
|
#include "amex/config.h"
|
|
|
|
|
2019-11-03 20:38:15 +00:00
|
|
|
#include "board/config.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "board/sg-reader.h"
|
2019-11-03 20:38:15 +00:00
|
|
|
|
2019-05-18 03:35:53 +00:00
|
|
|
#include "chunihook/config.h"
|
|
|
|
|
2019-10-19 21:04:34 +00:00
|
|
|
#include "hooklib/config.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "hooklib/gfx.h"
|
2019-10-19 21:04:34 +00:00
|
|
|
|
2019-05-18 03:35:53 +00:00
|
|
|
#include "platform/config.h"
|
2019-11-06 01:11:25 +00:00
|
|
|
#include "platform/platform.h"
|
2019-05-18 03:35:53 +00:00
|
|
|
|
2021-05-31 16:58:22 +00:00
|
|
|
void chuni_dll_config_load(
|
|
|
|
struct chuni_dll_config *cfg,
|
|
|
|
const wchar_t *filename)
|
|
|
|
{
|
|
|
|
assert(cfg != NULL);
|
|
|
|
assert(filename != NULL);
|
|
|
|
|
|
|
|
GetPrivateProfileStringW(
|
|
|
|
L"chuniio",
|
|
|
|
L"path",
|
|
|
|
L"",
|
|
|
|
cfg->path,
|
|
|
|
_countof(cfg->path),
|
|
|
|
filename);
|
|
|
|
}
|
|
|
|
|
2019-10-20 00:37:43 +00:00
|
|
|
void slider_config_load(struct slider_config *cfg, const wchar_t *filename)
|
|
|
|
{
|
|
|
|
assert(cfg != NULL);
|
|
|
|
assert(filename != NULL);
|
|
|
|
|
|
|
|
cfg->enable = GetPrivateProfileIntW(L"slider", L"enable", 1, filename);
|
|
|
|
}
|
|
|
|
|
2019-05-18 03:35:53 +00:00
|
|
|
void chuni_hook_config_load(
|
|
|
|
struct chuni_hook_config *cfg,
|
|
|
|
const wchar_t *filename)
|
|
|
|
{
|
|
|
|
assert(cfg != NULL);
|
|
|
|
assert(filename != NULL);
|
|
|
|
|
|
|
|
memset(cfg, 0, sizeof(*cfg));
|
|
|
|
|
2019-11-03 14:52:33 +00:00
|
|
|
platform_config_load(&cfg->platform, filename);
|
2019-05-18 03:35:53 +00:00
|
|
|
amex_config_load(&cfg->amex, filename);
|
2019-11-03 20:38:15 +00:00
|
|
|
aime_config_load(&cfg->aime, filename);
|
2019-10-19 21:04:34 +00:00
|
|
|
gfx_config_load(&cfg->gfx, filename);
|
2021-05-31 16:58:22 +00:00
|
|
|
chuni_dll_config_load(&cfg->dll, filename);
|
2019-10-20 00:37:43 +00:00
|
|
|
slider_config_load(&cfg->slider, filename);
|
2019-05-18 03:35:53 +00:00
|
|
|
}
|