forked from Dniel97/segatools
3d6669dff1
There's basically no difference at the platform level except for the addition of the ALLS PCBID hook, which is harmless on Nu.
37 lines
795 B
C
37 lines
795 B
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "chunihook/config.h"
|
|
|
|
#include "hooklib/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
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);
|
|
}
|
|
|
|
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));
|
|
|
|
platform_config_load(&cfg->platform, filename);
|
|
amex_config_load(&cfg->amex, filename);
|
|
gfx_config_load(&cfg->gfx, filename);
|
|
slider_config_load(&cfg->slider, filename);
|
|
}
|