├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── SOURCE ├── NFSC ├── NFSCHDContentSupport.aps ├── NFSCHDContentSupport.filters ├── NFSCHDContentSupport.rc ├── NFSCHDContentSupport.sln ├── NFSCHDContentSupport.user ├── NFSCHDContentSupport.vcxproj ├── NFSCHDContentSupport.vcxproj.user ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSHDContentSupport.sln ├── NFSMW ├── NFSMWHDContentSupport.aps ├── NFSMWHDContentSupport.filters ├── NFSMWHDContentSupport.rc ├── NFSMWHDContentSupport.user ├── NFSMWHDContentSupport.vcxproj ├── NFSMWHDContentSupport.vcxproj.user ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSPS ├── NFSPSHDContentSupport.aps ├── NFSPSHDContentSupport.filters ├── NFSPSHDContentSupport.rc ├── NFSPSHDContentSupport.sln ├── NFSPSHDContentSupport.user ├── NFSPSHDContentSupport.vcxproj ├── NFSPSHDContentSupport.vcxproj.user ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSU ├── NFSUHDContentSupport.aps ├── NFSUHDContentSupport.filters ├── NFSUHDContentSupport.rc ├── NFSUHDContentSupport.sln ├── NFSUHDContentSupport.user ├── NFSUHDContentSupport.vcxproj ├── NFSUHDContentSupport.vcxproj.user ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSU2 ├── NFSU2HDContentSupport.aps ├── NFSU2HDContentSupport.filters ├── NFSU2HDContentSupport.rc ├── NFSU2HDContentSupport.sln ├── NFSU2HDContentSupport.user ├── NFSU2HDContentSupport.vcxproj ├── NFSU2HDContentSupport.vcxproj.user ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Release ├── NFSU2HDContentSupport │ └── scripts │ │ └── NFSU2HDContentSupport.ini └── NFSUHDContentSupport │ └── scripts │ └── NFSUHDContentSupport.ini ├── 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 └── settings.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/README.md -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.aps -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.filters -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.rc -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.sln -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.user -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.vcxproj -------------------------------------------------------------------------------- /SOURCE/NFSC/NFSCHDContentSupport.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/NFSCHDContentSupport.vcxproj.user -------------------------------------------------------------------------------- /SOURCE/NFSC/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/dllmain.cpp -------------------------------------------------------------------------------- /SOURCE/NFSC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/resource.h -------------------------------------------------------------------------------- /SOURCE/NFSC/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /SOURCE/NFSC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/stdafx.h -------------------------------------------------------------------------------- /SOURCE/NFSC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSC/targetver.h -------------------------------------------------------------------------------- /SOURCE/NFSHDContentSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSHDContentSupport.sln -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.aps -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.filters -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.rc -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.user -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.vcxproj -------------------------------------------------------------------------------- /SOURCE/NFSMW/NFSMWHDContentSupport.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/NFSMWHDContentSupport.vcxproj.user -------------------------------------------------------------------------------- /SOURCE/NFSMW/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/dllmain.cpp -------------------------------------------------------------------------------- /SOURCE/NFSMW/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/resource.h -------------------------------------------------------------------------------- /SOURCE/NFSMW/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /SOURCE/NFSMW/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/stdafx.h -------------------------------------------------------------------------------- /SOURCE/NFSMW/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSMW/targetver.h -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.aps -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.filters -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.rc -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.sln -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.user -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.vcxproj -------------------------------------------------------------------------------- /SOURCE/NFSPS/NFSPSHDContentSupport.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/NFSPSHDContentSupport.vcxproj.user -------------------------------------------------------------------------------- /SOURCE/NFSPS/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/dllmain.cpp -------------------------------------------------------------------------------- /SOURCE/NFSPS/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/resource.h -------------------------------------------------------------------------------- /SOURCE/NFSPS/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /SOURCE/NFSPS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/stdafx.h -------------------------------------------------------------------------------- /SOURCE/NFSPS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSPS/targetver.h -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.aps -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.filters -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.rc -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.sln -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.user -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.vcxproj -------------------------------------------------------------------------------- /SOURCE/NFSU/NFSUHDContentSupport.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/NFSUHDContentSupport.vcxproj.user -------------------------------------------------------------------------------- /SOURCE/NFSU/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/dllmain.cpp -------------------------------------------------------------------------------- /SOURCE/NFSU/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/resource.h -------------------------------------------------------------------------------- /SOURCE/NFSU/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /SOURCE/NFSU/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/stdafx.h -------------------------------------------------------------------------------- /SOURCE/NFSU/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU/targetver.h -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.aps -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.filters -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.rc -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.sln -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.user -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.vcxproj -------------------------------------------------------------------------------- /SOURCE/NFSU2/NFSU2HDContentSupport.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/NFSU2HDContentSupport.vcxproj.user -------------------------------------------------------------------------------- /SOURCE/NFSU2/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/dllmain.cpp -------------------------------------------------------------------------------- /SOURCE/NFSU2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/resource.h -------------------------------------------------------------------------------- /SOURCE/NFSU2/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /SOURCE/NFSU2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/stdafx.h -------------------------------------------------------------------------------- /SOURCE/NFSU2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/NFSU2/targetver.h -------------------------------------------------------------------------------- /SOURCE/Release/NFSU2HDContentSupport/scripts/NFSU2HDContentSupport.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/Release/NFSU2HDContentSupport/scripts/NFSU2HDContentSupport.ini -------------------------------------------------------------------------------- /SOURCE/Release/NFSUHDContentSupport/scripts/NFSUHDContentSupport.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/Release/NFSUHDContentSupport/scripts/NFSUHDContentSupport.ini -------------------------------------------------------------------------------- /SOURCE/includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/CPatch.h -------------------------------------------------------------------------------- /SOURCE/includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/IniReader.h -------------------------------------------------------------------------------- /SOURCE/includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/ini_parser.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/calling.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/injector.hpp -------------------------------------------------------------------------------- /SOURCE/includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/injector/utility.hpp -------------------------------------------------------------------------------- /SOURCE/includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/includes/stdafx.h -------------------------------------------------------------------------------- /SOURCE/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroWidescreen/NFSHDContentSupport/HEAD/SOURCE/settings.h --------------------------------------------------------------------------------