├── .github └── FUNDING.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── config_templates ├── CONFIG_FORMAT.md ├── README.md ├── nintendo.json └── playstation.json └── src ├── VirtualDevice.cpp ├── VirtualDevice.hpp ├── constants.hpp ├── globals.hpp ├── main.cpp ├── packet.cpp └── packet.hpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | *.kdev4 3 | *.swp 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/README.md -------------------------------------------------------------------------------- /config_templates/CONFIG_FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/config_templates/CONFIG_FORMAT.md -------------------------------------------------------------------------------- /config_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/config_templates/README.md -------------------------------------------------------------------------------- /config_templates/nintendo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/config_templates/nintendo.json -------------------------------------------------------------------------------- /config_templates/playstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/config_templates/playstation.json -------------------------------------------------------------------------------- /src/VirtualDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/VirtualDevice.cpp -------------------------------------------------------------------------------- /src/VirtualDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/VirtualDevice.hpp -------------------------------------------------------------------------------- /src/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/constants.hpp -------------------------------------------------------------------------------- /src/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/globals.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/packet.cpp -------------------------------------------------------------------------------- /src/packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v1993/evdevhook/HEAD/src/packet.hpp --------------------------------------------------------------------------------