forked from TeamTofuShop/segatools
cardhook: Wire up aimeReaderHost hook
This is an external AiMe driver process that is only used by Chunithm AFAIK. The wiring can be easily re-used for other games.
This commit is contained in:
42
cardhook/dllmain.c
Normal file
42
cardhook/dllmain.c
Normal file
@ -0,0 +1,42 @@
|
||||
#include <windows.h>
|
||||
|
||||
#include "cardhook/_com12.h"
|
||||
|
||||
#include "hook/process.h"
|
||||
|
||||
#include "hooklib/serial.h"
|
||||
|
||||
#include "util/dprintf.h"
|
||||
#include "util/spike.h"
|
||||
|
||||
static process_entry_t app_startup;
|
||||
|
||||
static DWORD CALLBACK app_pre_startup(void)
|
||||
{
|
||||
dprintf("--- Begin %s ---\n", __func__);
|
||||
|
||||
serial_hook_init();
|
||||
spike_hook_init("cardspike.txt");
|
||||
com12_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);
|
||||
}
|
Reference in New Issue
Block a user