├── .gitignore ├── LICENSE ├── NFSMWExtraOptions ├── CodeCaves.h ├── DialogInterfaceAddresses.h ├── DialogInterfaceHook.h ├── ExtraOptionsStuff.h ├── GlobalVariables.h ├── Helpers.h ├── HotkeyStuff.h ├── InGameFunctions.h ├── LanguageSelectScreen.h ├── NFSMWExtraOptions.filters ├── NFSMWExtraOptions.rc ├── NFSMWExtraOptions.sln ├── NFSMWExtraOptions.vcxproj ├── ScreenPrintf.h ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSMWExtraOptionsSettings.ini ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/LICENSE -------------------------------------------------------------------------------- /NFSMWExtraOptions/CodeCaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/CodeCaves.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/DialogInterfaceAddresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/DialogInterfaceAddresses.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/DialogInterfaceHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/DialogInterfaceHook.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/ExtraOptionsStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/ExtraOptionsStuff.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/GlobalVariables.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/Helpers.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/HotkeyStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/HotkeyStuff.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/InGameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/InGameFunctions.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/LanguageSelectScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/LanguageSelectScreen.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/NFSMWExtraOptions.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/NFSMWExtraOptions.filters -------------------------------------------------------------------------------- /NFSMWExtraOptions/NFSMWExtraOptions.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/NFSMWExtraOptions.rc -------------------------------------------------------------------------------- /NFSMWExtraOptions/NFSMWExtraOptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/NFSMWExtraOptions.sln -------------------------------------------------------------------------------- /NFSMWExtraOptions/NFSMWExtraOptions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/NFSMWExtraOptions.vcxproj -------------------------------------------------------------------------------- /NFSMWExtraOptions/ScreenPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/ScreenPrintf.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/dllmain.cpp -------------------------------------------------------------------------------- /NFSMWExtraOptions/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/resource.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSMWExtraOptions/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/stdafx.h -------------------------------------------------------------------------------- /NFSMWExtraOptions/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptions/targetver.h -------------------------------------------------------------------------------- /NFSMWExtraOptionsSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/NFSMWExtraOptionsSettings.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/README.md -------------------------------------------------------------------------------- /includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/CPatch.h -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/injector/utility.hpp -------------------------------------------------------------------------------- /includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSMWExOpts/HEAD/includes/stdafx.h --------------------------------------------------------------------------------