amex: Shift config structs around

This commit is contained in:
Tau
2019-11-05 19:36:35 -05:00
parent 8485879ff7
commit f8289689f0
13 changed files with 61 additions and 45 deletions

View File

@ -2,7 +2,7 @@
#include <windows.h>
#include "amex/config.h"
#include <stdbool.h>
#include "jvs/jvs-bus.h"
@ -13,6 +13,10 @@ DEFINE_GUID(
0x4288,
0xAA, 0x00, 0x6C, 0x00, 0xD7, 0x67, 0xBD, 0xBF);
struct jvs_config {
bool enable;
};
typedef HRESULT (*jvs_provider_t)(struct jvs_node **root);
HRESULT jvs_hook_init(const struct jvs_config *cfg, jvs_provider_t provider);