├── .gitattributes ├── .gitignore ├── LICENSE ├── NFSUCExtraOptions ├── CodeCaves.h ├── EALocalizerManager.h ├── EAMemcard.h ├── ExtraOptionsStuff.h ├── FESplashScreen.h ├── Game.h ├── GlobalVariables.h ├── Helpers.h ├── HotkeyStuff.h ├── InGameFunctions.h ├── NFSUCExtraOptions.rc ├── NFSUCExtraOptions.sln ├── NFSUCExtraOptions.vcxproj ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSUCExtraOptionsSettings.ini ├── README.md └── includes ├── IniReader.h ├── ini_parser.hpp └── injector ├── assembly.hpp ├── calling.hpp ├── gvm ├── gvm.hpp └── translator.hpp ├── hooking.hpp ├── injector.hpp └── utility.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/LICENSE -------------------------------------------------------------------------------- /NFSUCExtraOptions/CodeCaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/CodeCaves.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/EALocalizerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/EALocalizerManager.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/EAMemcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/EAMemcard.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/ExtraOptionsStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/ExtraOptionsStuff.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/FESplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/FESplashScreen.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/Game.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/GlobalVariables.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/Helpers.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/HotkeyStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/HotkeyStuff.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/InGameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/InGameFunctions.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/NFSUCExtraOptions.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/NFSUCExtraOptions.rc -------------------------------------------------------------------------------- /NFSUCExtraOptions/NFSUCExtraOptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/NFSUCExtraOptions.sln -------------------------------------------------------------------------------- /NFSUCExtraOptions/NFSUCExtraOptions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/NFSUCExtraOptions.vcxproj -------------------------------------------------------------------------------- /NFSUCExtraOptions/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/dllmain.cpp -------------------------------------------------------------------------------- /NFSUCExtraOptions/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/resource.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSUCExtraOptions/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/stdafx.h -------------------------------------------------------------------------------- /NFSUCExtraOptions/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptions/targetver.h -------------------------------------------------------------------------------- /NFSUCExtraOptionsSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/NFSUCExtraOptionsSettings.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/README.md -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSUCExOpts/HEAD/includes/injector/utility.hpp --------------------------------------------------------------------------------