segatools/minihook/dllmain.c

76 lines
1.4 KiB
C
Raw Permalink Normal View History

2018-11-08 21:02:03 +00:00
#include <windows.h>
#include <stdlib.h>
#include "amex/config.h"
#include "amex/ds.h"
2018-11-08 21:02:03 +00:00
#include "hook/process.h"
#include "hooklib/spike.h"
2019-10-15 03:18:18 +00:00
#include "platform/clock.h"
2019-05-18 03:10:09 +00:00
#include "platform/config.h"
#include "platform/nusec.h"
2018-11-08 21:02:03 +00:00
#include "util/dprintf.h"
static process_entry_t app_startup;
static DWORD CALLBACK app_pre_startup(void)
{
2019-10-15 03:18:18 +00:00
struct clock_config clock_cfg;
2019-05-04 17:12:20 +00:00
struct ds_config ds_cfg;
2019-10-15 03:18:18 +00:00
struct nusec_config nusec_cfg;
HRESULT hr;
2019-05-04 17:12:20 +00:00
2018-11-08 21:02:03 +00:00
dprintf("--- Begin %s ---\n", __func__);
2019-10-15 03:18:18 +00:00
clock_config_load(&clock_cfg, L".\\segatools.ini");
2019-05-04 17:12:20 +00:00
ds_config_load(&ds_cfg, L".\\segatools.ini");
2019-10-15 03:18:18 +00:00
nusec_config_load(&nusec_cfg, L".\\segatools.ini");
spike_hook_init(L".\\segatools.ini");
2019-05-18 03:10:09 +00:00
hr = clock_hook_init(&clock_cfg);
if (FAILED(hr)) {
goto fail;
}
hr = nusec_hook_init(&nusec_cfg, "SSSS", "AAV0");
if (FAILED(hr)) {
goto fail;
}
hr = ds_hook_init(&ds_cfg);
if (FAILED(hr)) {
goto fail;
}
2018-11-08 21:02:03 +00:00
dprintf("--- End %s ---\n", __func__);
return app_startup();
fail:
ExitProcess(EXIT_FAILURE);
2018-11-08 21:02:03 +00:00
}
BOOL WINAPI DllMain(HMODULE mod, DWORD cause, void *ctx)
{
HRESULT hr;
if (cause != DLL_PROCESS_ATTACH) {
return TRUE;
}
hr = process_hijack_startup(app_pre_startup, &app_startup);
if (!SUCCEEDED(hr)) {
dprintf("Failed to hijack process startup: %x\n", (int) hr);
}
return SUCCEEDED(hr);
}