forked from TeamTofuShop/segatools
This PR adds everything that's needed on the segatools side to add E-Money support regarding Thinca authentication cards. I've also included set-up documentation (with a network side bonus which was as far as I could figure out so far, but I'm pretty certain no more changes to segatools will be needed) Due to the nature of a custom protcol called TCAP that Thinca uses for networking (see docs), I can't fully test that everything works as I haven't yet bothered to figure that protocol out. Tested with both APMv3 and FGO.  Reviewed-on: TeamTofuShop/segatools#35 Co-authored-by: Haruka <haruka@noreply.gitea.tendokyu.moe> Co-committed-by: Haruka <haruka@noreply.gitea.tendokyu.moe>
32 lines
632 B
Meson
32 lines
632 B
Meson
util_lib = static_library(
|
|
'util',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
imagehlp_lib,
|
|
],
|
|
sources : [
|
|
'async.c',
|
|
'async.h',
|
|
'crc.c',
|
|
'crc.h',
|
|
'dll-bind.c',
|
|
'dll-bind.h',
|
|
'dprintf.c',
|
|
'dprintf.h',
|
|
'dump.c',
|
|
'dump.h',
|
|
'get_function_ordinal.c',
|
|
'get_function_ordinal.h',
|
|
'lib.c',
|
|
'lib.h',
|
|
'slurp.c',
|
|
'slurp.h',
|
|
'str.c',
|
|
'str.h',
|
|
'env.c',
|
|
'env.h',
|
|
],
|
|
)
|