├── .gitattributes ├── .gitignore ├── LICENSE ├── NFSMWFEShadows.ini ├── NFSMWFEShadows ├── NFSMWFEShadows.filters ├── NFSMWFEShadows.rc ├── NFSMWFEShadows.sln ├── NFSMWFEShadows.user ├── NFSMWFEShadows.vcxproj ├── NFSMWFEShadows.vcxproj.user ├── assembly.h ├── dllmain.cpp ├── resource.h ├── settings.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md └── 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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/LICENSE -------------------------------------------------------------------------------- /NFSMWFEShadows.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows.ini -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.filters -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.rc -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.sln -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.user -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.vcxproj -------------------------------------------------------------------------------- /NFSMWFEShadows/NFSMWFEShadows.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/NFSMWFEShadows.vcxproj.user -------------------------------------------------------------------------------- /NFSMWFEShadows/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/assembly.h -------------------------------------------------------------------------------- /NFSMWFEShadows/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/dllmain.cpp -------------------------------------------------------------------------------- /NFSMWFEShadows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/resource.h -------------------------------------------------------------------------------- /NFSMWFEShadows/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/settings.h -------------------------------------------------------------------------------- /NFSMWFEShadows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSMWFEShadows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/stdafx.h -------------------------------------------------------------------------------- /NFSMWFEShadows/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/NFSMWFEShadows/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/README.md -------------------------------------------------------------------------------- /includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/CPatch.h -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/injector/utility.hpp -------------------------------------------------------------------------------- /includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSMWFEShadows/HEAD/includes/stdafx.h --------------------------------------------------------------------------------