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:
Tau
2018-11-20 20:29:40 -05:00
parent 1630784c3d
commit 55c68c8094
6 changed files with 248 additions and 0 deletions

20
cardhook/meson.build Normal file
View File

@ -0,0 +1,20 @@
shared_library(
'cardhook',
name_prefix : '',
include_directories: inc,
implicit_include_directories : false,
vs_module_defs : 'cardhook.def',
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
link_with : [
board_lib,
util_lib,
],
sources : [
'_com12.c',
'dllmain.c',
],
)