forked from TeamTofuShop/segatools
Shift hook DLL config structs around
This commit is contained in:
@ -1,13 +1,16 @@
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/amex.h"
|
||||
#include "amex/config.h"
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
#include "idzhook/config.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
#include "platform/platform.h"
|
||||
|
||||
void idz_hook_config_load(
|
||||
struct idz_hook_config *cfg,
|
||||
|
@ -3,15 +3,13 @@
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/config.h"
|
||||
#include "amex/amex.h"
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
#include "idzhook/zinput.h"
|
||||
|
||||
struct zinput_config {
|
||||
bool enable;
|
||||
};
|
||||
#include "platform/platform.h"
|
||||
|
||||
struct idz_hook_config {
|
||||
struct platform_config platform;
|
||||
|
@ -2,6 +2,10 @@
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include "idzhook/config.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
struct zinput_config {
|
||||
bool enable;
|
||||
};
|
||||
|
||||
HRESULT zinput_hook_init(struct zinput_config *cfg);
|
||||
|
Reference in New Issue
Block a user