├── .gitignore ├── COPYING.txt ├── ConfigDialog.cpp ├── ConfigDialog.h ├── InputHooks.cpp ├── InputHooks.h ├── KeySettings.cpp ├── KeySettings.h ├── README.md ├── TouhouKeymap.cpp ├── TouhouKeymap.def ├── TouhouKeymap.h ├── TouhouKeymap.rc ├── TouhouKeymap.sln ├── TouhouKeymap.vcxproj ├── pch.cpp ├── pch.h ├── resource.h └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/COPYING.txt -------------------------------------------------------------------------------- /ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/ConfigDialog.cpp -------------------------------------------------------------------------------- /ConfigDialog.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ConfigDialog 4 | { 5 | void Init(); 6 | } 7 | -------------------------------------------------------------------------------- /InputHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/InputHooks.cpp -------------------------------------------------------------------------------- /InputHooks.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace InputHooks 4 | { 5 | void Init(); 6 | } 7 | -------------------------------------------------------------------------------- /KeySettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/KeySettings.cpp -------------------------------------------------------------------------------- /KeySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/KeySettings.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/README.md -------------------------------------------------------------------------------- /TouhouKeymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/TouhouKeymap.cpp -------------------------------------------------------------------------------- /TouhouKeymap.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | thcrap_plugin_init 4 | keymap_mod_detour 5 | -------------------------------------------------------------------------------- /TouhouKeymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/TouhouKeymap.h -------------------------------------------------------------------------------- /TouhouKeymap.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/TouhouKeymap.rc -------------------------------------------------------------------------------- /TouhouKeymap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/TouhouKeymap.sln -------------------------------------------------------------------------------- /TouhouKeymap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/TouhouKeymap.vcxproj -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/pch.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/resource.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/TouhouKeymap/HEAD/screenshot.png --------------------------------------------------------------------------------