2021-09-09 16:24:04 +08:00
|
|
|
{
|
|
|
|
"name": "polyhook2",
|
2023-08-29 04:21:36 +08:00
|
|
|
"version-date": "2023-08-11",
|
2021-09-09 16:24:04 +08:00
|
|
|
"description": "C++17, x86/x64 Hooking Library v2.0",
|
|
|
|
"homepage": "https://github.com/stevemk14ebr/PolyHook_2_0",
|
2022-03-03 06:52:16 +08:00
|
|
|
"license": "MIT",
|
2021-09-09 16:24:04 +08:00
|
|
|
"supports": "!(arm | uwp | linux | osx)",
|
2022-02-12 07:14:10 +08:00
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake",
|
|
|
|
"host": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake-config",
|
|
|
|
"host": true
|
2023-08-24 02:55:48 +08:00
|
|
|
},
|
|
|
|
"zydis"
|
2022-02-12 07:14:10 +08:00
|
|
|
],
|
2021-09-09 16:24:04 +08:00
|
|
|
"default-features": [
|
|
|
|
"detours",
|
|
|
|
"exception",
|
|
|
|
"inlinentd",
|
|
|
|
"pe",
|
2023-04-11 10:27:41 +08:00
|
|
|
"virtuals"
|
2021-09-09 16:24:04 +08:00
|
|
|
],
|
|
|
|
"features": {
|
2023-04-11 10:27:41 +08:00
|
|
|
"detours": {
|
|
|
|
"description": "Implement detour functionality",
|
2021-09-09 16:24:04 +08:00
|
|
|
"dependencies": [
|
2023-04-11 10:27:41 +08:00
|
|
|
"asmjit",
|
2023-08-24 02:55:48 +08:00
|
|
|
"asmtk"
|
2021-09-09 16:24:04 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"exception": {
|
|
|
|
"description": "Implement all exception hooking functionality"
|
|
|
|
},
|
|
|
|
"inlinentd": {
|
|
|
|
"description": "Support inline hooks without specifying typedefs by generating callback stubs at runtime with AsmJit",
|
|
|
|
"dependencies": [
|
|
|
|
"asmjit"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"pe": {
|
|
|
|
"description": "Implement all win pe hooking functionality"
|
|
|
|
},
|
|
|
|
"virtuals": {
|
|
|
|
"description": "Implement all virtual table hooking functionality"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|