├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── SekiroFpsUnlockDll.sln └── src ├── SekiroFpsUnlockDll.rc ├── SekiroFpsUnlockDll.vcxproj ├── SekiroFpsUnlockDll.vcxproj.filters ├── SekiroFpsUnlockDll.vcxproj.user ├── config └── SekiroFpsUnlockAndMore.xml ├── dllmain.cpp ├── framework.h ├── pch.cpp ├── pch.h ├── proxydll.h ├── proxydll.h.template ├── proxydll ├── d3d11.dll.h ├── dinput8.dll.h └── dxgi.dll.h └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/README.md -------------------------------------------------------------------------------- /SekiroFpsUnlockDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/SekiroFpsUnlockDll.sln -------------------------------------------------------------------------------- /src/SekiroFpsUnlockDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/SekiroFpsUnlockDll.rc -------------------------------------------------------------------------------- /src/SekiroFpsUnlockDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/SekiroFpsUnlockDll.vcxproj -------------------------------------------------------------------------------- /src/SekiroFpsUnlockDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/SekiroFpsUnlockDll.vcxproj.filters -------------------------------------------------------------------------------- /src/SekiroFpsUnlockDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/SekiroFpsUnlockDll.vcxproj.user -------------------------------------------------------------------------------- /src/config/SekiroFpsUnlockAndMore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/config/SekiroFpsUnlockAndMore.xml -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/framework.h -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/pch.cpp -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/proxydll.h: -------------------------------------------------------------------------------- 1 | // This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /src/proxydll.h.template: -------------------------------------------------------------------------------- 1 | // This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /src/proxydll/d3d11.dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/proxydll/d3d11.dll.h -------------------------------------------------------------------------------- /src/proxydll/dinput8.dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/proxydll/dinput8.dll.h -------------------------------------------------------------------------------- /src/proxydll/dxgi.dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/proxydll/dxgi.dll.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathyjf/SekiroFpsUnlockDll/HEAD/src/resource.h --------------------------------------------------------------------------------