2018-11-08 21:02:03 +00:00
|
|
|
#include <windows.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-03-04 22:22:38 +00:00
|
|
|
#include "platform/nusec.h"
|
2018-11-08 21:02:03 +00:00
|
|
|
|
2018-11-12 20:29:46 +00:00
|
|
|
#include "util/clock.h"
|
2018-11-08 21:02:03 +00:00
|
|
|
#include "util/dprintf.h"
|
2018-11-20 17:52:04 +00:00
|
|
|
#include "util/spike.h"
|
2018-11-08 21:02:03 +00:00
|
|
|
|
|
|
|
static process_entry_t app_startup;
|
|
|
|
|
|
|
|
static DWORD CALLBACK app_pre_startup(void)
|
|
|
|
{
|
|
|
|
dprintf("--- Begin %s ---\n", __func__);
|
|
|
|
|
2019-03-04 22:22:38 +00:00
|
|
|
spike_hook_init("minispike.txt");
|
|
|
|
clock_hook_init();
|
2018-11-08 21:02:03 +00:00
|
|
|
ds_hook_init();
|
|
|
|
nusec_hook_init();
|
|
|
|
|
|
|
|
dprintf("--- End %s ---\n", __func__);
|
|
|
|
|
|
|
|
return app_startup();
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|