├── .github └── workflows │ └── win32-build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── src ├── Plugin.cpp ├── Plugin.h ├── PluginRPC.cpp ├── PluginRPC.h ├── RPCEnumerations.h ├── Resource.rc ├── main.cpp ├── misc.h └── resource.h /.github/workflows/win32-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/.github/workflows/win32-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/README.md -------------------------------------------------------------------------------- /src/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/Plugin.cpp -------------------------------------------------------------------------------- /src/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/Plugin.h -------------------------------------------------------------------------------- /src/PluginRPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/PluginRPC.cpp -------------------------------------------------------------------------------- /src/PluginRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/PluginRPC.h -------------------------------------------------------------------------------- /src/RPCEnumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/RPCEnumerations.h -------------------------------------------------------------------------------- /src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/Resource.rc -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povargek/MiTurboFix/HEAD/src/resource.h --------------------------------------------------------------------------------