2019-09-01 15:40:25 +00:00
|
|
|
#include <assert.h>
|
2019-08-30 23:06:32 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/config.h"
|
|
|
|
|
2020-03-23 06:53:48 +00:00
|
|
|
#include "hooklib/config.h"
|
2021-06-16 10:08:08 +00:00
|
|
|
#include "hooklib/dvd.h"
|
2020-03-23 06:53:48 +00:00
|
|
|
#include "hooklib/gfx.h"
|
|
|
|
|
2019-08-30 23:06:32 +00:00
|
|
|
#include "mu3hook/config.h"
|
|
|
|
|
|
|
|
#include "platform/config.h"
|
|
|
|
|
2021-06-06 18:23:55 +00: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-30 23:06:32 +00:00
|
|
|
void mu3_hook_config_load(
|
|
|
|
struct mu3_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-08-30 23:06:32 +00:00
|
|
|
aime_config_load(&cfg->aime, filename);
|
2021-06-16 10:08:08 +00:00
|
|
|
dvd_config_load(&cfg->dvd, filename);
|
2020-10-07 17:26:12 +00:00
|
|
|
io4_config_load(&cfg->io4, filename);
|
2020-03-23 06:53:48 +00:00
|
|
|
gfx_config_load(&cfg->gfx, filename);
|
2021-06-06 18:23:55 +00:00
|
|
|
mu3_dll_config_load(&cfg->dll, filename);
|
2019-08-30 23:06:32 +00:00
|
|
|
}
|