├── .gitignore ├── LICENSE ├── NFSUExtraOptions ├── CodeCaves.h ├── ExtraOptionsStuff.h ├── GlobalVariables.h ├── HotkeyStuff.h ├── InGameFunctions.h ├── NFSUExtraOptions.rc ├── NFSUExtraOptions.sln ├── NFSUExtraOptions.vcxproj ├── PreRaceStatsScreen.h ├── QROptionsScreen.h ├── UserCalls.h ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSUExtraOptionsSettings.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/NFSUExOpts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/LICENSE -------------------------------------------------------------------------------- /NFSUExtraOptions/CodeCaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/CodeCaves.h -------------------------------------------------------------------------------- /NFSUExtraOptions/ExtraOptionsStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/ExtraOptionsStuff.h -------------------------------------------------------------------------------- /NFSUExtraOptions/GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/GlobalVariables.h -------------------------------------------------------------------------------- /NFSUExtraOptions/HotkeyStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/HotkeyStuff.h -------------------------------------------------------------------------------- /NFSUExtraOptions/InGameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/InGameFunctions.h -------------------------------------------------------------------------------- /NFSUExtraOptions/NFSUExtraOptions.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/NFSUExtraOptions.rc -------------------------------------------------------------------------------- /NFSUExtraOptions/NFSUExtraOptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/NFSUExtraOptions.sln -------------------------------------------------------------------------------- /NFSUExtraOptions/NFSUExtraOptions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/NFSUExtraOptions.vcxproj -------------------------------------------------------------------------------- /NFSUExtraOptions/PreRaceStatsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/PreRaceStatsScreen.h -------------------------------------------------------------------------------- /NFSUExtraOptions/QROptionsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/QROptionsScreen.h -------------------------------------------------------------------------------- /NFSUExtraOptions/UserCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/UserCalls.h -------------------------------------------------------------------------------- /NFSUExtraOptions/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/dllmain.cpp -------------------------------------------------------------------------------- /NFSUExtraOptions/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/resource.h -------------------------------------------------------------------------------- /NFSUExtraOptions/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSUExtraOptions/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/stdafx.h -------------------------------------------------------------------------------- /NFSUExtraOptions/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptions/targetver.h -------------------------------------------------------------------------------- /NFSUExtraOptionsSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/NFSUExtraOptionsSettings.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/README.md -------------------------------------------------------------------------------- /includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/CPatch.h -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/injector/utility.hpp -------------------------------------------------------------------------------- /includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUExOpts/HEAD/includes/stdafx.h --------------------------------------------------------------------------------