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

43 lines
914 B
C
Raw Normal View History

#include <assert.h>
2019-08-31 01:06:32 +02:00
#include <stddef.h>
#include "board/config.h"
#include "hooklib/config.h"
#include "hooklib/dvd.h"
#include "hooklib/gfx.h"
2019-08-31 01:06:32 +02:00
#include "mu3hook/config.h"
#include "platform/config.h"
2021-06-06 20:23:55 +02:00
void mu3_dll_config_load(
struct mu3_dll_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
GetPrivateProfileStringW(
L"mu3io",
L"path",
L"",
cfg->path,
_countof(cfg->path),
filename);
}
2019-08-31 01:06:32 +02:00
void mu3_hook_config_load(
struct mu3_hook_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
platform_config_load(&cfg->platform, filename);
2019-08-31 01:06:32 +02:00
aime_config_load(&cfg->aime, filename);
dvd_config_load(&cfg->dvd, filename);
gfx_config_load(&cfg->gfx, filename);
2021-06-06 20:23:55 +02:00
mu3_dll_config_load(&cfg->dll, filename);
2019-08-31 01:06:32 +02:00
}