forked from Dniel97/segatools
mu3hook/dllmain.c: initialize graphics hook
This commit is contained in:
parent
20d5d480fb
commit
7a51533194
@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
#include "board/config.h"
|
#include "board/config.h"
|
||||||
|
|
||||||
|
#include "hooklib/config.h"
|
||||||
|
#include "hooklib/gfx.h"
|
||||||
|
|
||||||
#include "mu3hook/config.h"
|
#include "mu3hook/config.h"
|
||||||
|
|
||||||
#include "platform/config.h"
|
#include "platform/config.h"
|
||||||
@ -16,4 +19,5 @@ void mu3_hook_config_load(
|
|||||||
|
|
||||||
platform_config_load(&cfg->platform, filename);
|
platform_config_load(&cfg->platform, filename);
|
||||||
aime_config_load(&cfg->aime, filename);
|
aime_config_load(&cfg->aime, filename);
|
||||||
|
gfx_config_load(&cfg->gfx, filename);
|
||||||
}
|
}
|
||||||
|
@ -4,11 +4,14 @@
|
|||||||
|
|
||||||
#include "board/config.h"
|
#include "board/config.h"
|
||||||
|
|
||||||
|
#include "hooklib/gfx.h"
|
||||||
|
|
||||||
#include "platform/config.h"
|
#include "platform/config.h"
|
||||||
|
|
||||||
struct mu3_hook_config {
|
struct mu3_hook_config {
|
||||||
struct platform_config platform;
|
struct platform_config platform;
|
||||||
struct aime_config aime;
|
struct aime_config aime;
|
||||||
|
struct gfx_config gfx;
|
||||||
};
|
};
|
||||||
|
|
||||||
void mu3_hook_config_load(
|
void mu3_hook_config_load(
|
||||||
|
@ -33,6 +33,7 @@ static DWORD CALLBACK mu3_pre_startup(void)
|
|||||||
|
|
||||||
/* Hook Win32 APIs */
|
/* Hook Win32 APIs */
|
||||||
|
|
||||||
|
gfx_hook_init(&mu3_hook_cfg.gfx);
|
||||||
serial_hook_init();
|
serial_hook_init();
|
||||||
unity_hook_init();
|
unity_hook_init();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user