forked from TeamTofuShop/segatools
Shift hook DLL config structs around
This commit is contained in:
@ -4,15 +4,19 @@
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/amex.h"
|
||||
#include "amex/config.h"
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
#include "chunihook/config.h"
|
||||
|
||||
#include "hooklib/config.h"
|
||||
#include "hooklib/gfx.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
#include "platform/platform.h"
|
||||
|
||||
void slider_config_load(struct slider_config *cfg, const wchar_t *filename)
|
||||
{
|
||||
|
@ -3,17 +3,15 @@
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/config.h"
|
||||
#include "amex/amex.h"
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
#include "hooklib/config.h"
|
||||
#include "chunihook/slider.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
#include "hooklib/gfx.h"
|
||||
|
||||
struct slider_config {
|
||||
bool enable;
|
||||
};
|
||||
#include "platform/platform.h"
|
||||
|
||||
struct chuni_hook_config {
|
||||
struct platform_config platform;
|
||||
|
@ -9,7 +9,6 @@
|
||||
#include "board/slider-cmd.h"
|
||||
#include "board/slider-frame.h"
|
||||
|
||||
#include "chunihook/config.h"
|
||||
#include "chunihook/slider.h"
|
||||
|
||||
#include "chuniio/chuniio.h"
|
||||
|
@ -2,6 +2,10 @@
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include "chunihook/config.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
struct slider_config {
|
||||
bool enable;
|
||||
};
|
||||
|
||||
HRESULT slider_hook_init(const struct slider_config *cfg);
|
||||
|
Reference in New Issue
Block a user