├── LICENSE.md ├── Makefile ├── README.md ├── include ├── hooking.h └── hooks.h └── source ├── hooking.c ├── hooks.c └── main.c /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/README.md -------------------------------------------------------------------------------- /include/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/include/hooking.h -------------------------------------------------------------------------------- /include/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/include/hooks.h -------------------------------------------------------------------------------- /source/hooking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/source/hooking.c -------------------------------------------------------------------------------- /source/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/source/hooks.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cryptogenic/PS4-KHook/HEAD/source/main.c --------------------------------------------------------------------------------