2018-11-08 21:02:03 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
2021-05-23 18:17:14 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2019-05-16 00:08:35 +00:00
|
|
|
#include "amex/config.h"
|
2019-03-04 22:22:38 +00:00
|
|
|
#include "amex/ds.h"
|
|
|
|
|
2018-11-08 21:02:03 +00:00
|
|
|
#include "hook/process.h"
|
|
|
|
|
2019-05-14 15:15:20 +00:00
|
|
|
#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"
|
2019-03-04 22:22:38 +00:00
|
|
|
#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;
|
2021-05-23 18:17:14 +00:00
|
|
|
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");
|
2019-10-19 20:15:14 +00:00
|
|
|
spike_hook_init(L".\\segatools.ini");
|
2019-05-18 03:10:09 +00:00
|
|
|
|
2021-05-23 18:17:14 +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();
|
2021-05-23 18:17:14 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|