26 lines
536 B
C
26 lines
536 B
C
#include <assert.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/amex.h"
|
|
#include "amex/config.h"
|
|
|
|
#include "board/config.h"
|
|
#include "board/sg-reader.h"
|
|
|
|
#include "divahook/config.h"
|
|
|
|
#include "platform/config.h"
|
|
#include "platform/platform.h"
|
|
|
|
void diva_hook_config_load(
|
|
struct diva_hook_config *cfg,
|
|
const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
platform_config_load(&cfg->platform, filename);
|
|
amex_config_load(&cfg->amex, filename);
|
|
aime_config_load(&cfg->aime, filename);
|
|
}
|