├── .DS_Store ├── .gitignore ├── Carbon_Address.h ├── Helpers.h ├── LICENSE ├── MW_Address.h ├── PS_Address.h ├── README.md ├── TexWizard.h ├── TexWizard.sln ├── TexWizard.vcxproj ├── TexWizard.vcxproj.user ├── UC_Address.h ├── UG2_Address.h ├── UG_Address.h ├── dllmain.cpp ├── includes ├── CPatch.h ├── IniReader.h ├── ini_parser.hpp ├── injector │ ├── assembly.hpp │ ├── calling.hpp │ ├── gvm │ │ ├── gvm.hpp │ │ └── translator.hpp │ ├── hooking.hpp │ ├── injector.hpp │ └── utility.hpp └── stdafx.h ├── json ├── json-forwards.h └── json.h ├── jsoncpp.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/.gitignore -------------------------------------------------------------------------------- /Carbon_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/Carbon_Address.h -------------------------------------------------------------------------------- /Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/Helpers.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/LICENSE -------------------------------------------------------------------------------- /MW_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/MW_Address.h -------------------------------------------------------------------------------- /PS_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/PS_Address.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/README.md -------------------------------------------------------------------------------- /TexWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/TexWizard.h -------------------------------------------------------------------------------- /TexWizard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/TexWizard.sln -------------------------------------------------------------------------------- /TexWizard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/TexWizard.vcxproj -------------------------------------------------------------------------------- /TexWizard.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/TexWizard.vcxproj.user -------------------------------------------------------------------------------- /UC_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/UC_Address.h -------------------------------------------------------------------------------- /UG2_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/UG2_Address.h -------------------------------------------------------------------------------- /UG_Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/UG_Address.h -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/CPatch.h -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/injector/utility.hpp -------------------------------------------------------------------------------- /includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/includes/stdafx.h -------------------------------------------------------------------------------- /json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/json/json-forwards.h -------------------------------------------------------------------------------- /json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/json/json.h -------------------------------------------------------------------------------- /jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/jsoncpp.cpp -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-033/texwizard/HEAD/targetver.h --------------------------------------------------------------------------------