divahook/config.c: Consolidate config

This commit is contained in:
Tau
2019-05-17 23:41:14 -04:00
parent dff71b530a
commit d44740647c
4 changed files with 47 additions and 16 deletions

16
divahook/config.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include <stddef.h>
#include "amex/config.h"
#include "platform/config.h"
struct diva_hook_config {
struct nu_config nu;
struct amex_config amex;
};
void diva_hook_config_load(
struct diva_hook_config *cfg,
const wchar_t *filename);