mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-13 21:20:50 +01:00
20 lines
370 B
C
20 lines
370 B
C
#include <assert.h>
|
|
#include <stddef.h>
|
|
|
|
#include "amex/config.h"
|
|
|
|
#include "divahook/config.h"
|
|
|
|
#include "platform/config.h"
|
|
|
|
void diva_hook_config_load(
|
|
struct diva_hook_config *cfg,
|
|
const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
amex_config_load(&cfg->amex, filename);
|
|
nu_config_load(&cfg->nu, filename);
|
|
}
|