├── .gitattributes ├── .gitignore ├── DOW2CoreFix.sln ├── DOW2CoreFix ├── CallGraph.h ├── DOW2CoreFix.vcxproj ├── DOW2CoreFix.vcxproj.filters ├── Exports.cpp ├── Profile.h └── main.cpp ├── README.md └── libs └── detours ├── include ├── detours.h ├── detver.h └── syelog.h └── lib └── detours.lib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/.gitignore -------------------------------------------------------------------------------- /DOW2CoreFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix.sln -------------------------------------------------------------------------------- /DOW2CoreFix/CallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/CallGraph.h -------------------------------------------------------------------------------- /DOW2CoreFix/DOW2CoreFix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/DOW2CoreFix.vcxproj -------------------------------------------------------------------------------- /DOW2CoreFix/DOW2CoreFix.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/DOW2CoreFix.vcxproj.filters -------------------------------------------------------------------------------- /DOW2CoreFix/Exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/Exports.cpp -------------------------------------------------------------------------------- /DOW2CoreFix/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/Profile.h -------------------------------------------------------------------------------- /DOW2CoreFix/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/DOW2CoreFix/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/README.md -------------------------------------------------------------------------------- /libs/detours/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/libs/detours/include/detours.h -------------------------------------------------------------------------------- /libs/detours/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/libs/detours/include/detver.h -------------------------------------------------------------------------------- /libs/detours/include/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/libs/detours/include/syelog.h -------------------------------------------------------------------------------- /libs/detours/lib/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximumgame/DOW2CoreFix/HEAD/libs/detours/lib/detours.lib --------------------------------------------------------------------------------