zinput: Add stub DirectInput implementation

Initial D Zero has some incomplete built-in PC input support, we
need to disable it so that it does not interfere with our JVS
emulation.
This commit is contained in:
Tau
2019-03-05 13:29:56 -05:00
parent 9ae07c6e49
commit b550efd4a9
5 changed files with 169 additions and 0 deletions

17
zinput/meson.build Normal file
View File

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