├── .gitignore ├── CIL.sln ├── CIL ├── APIDummy.h ├── CIL.h ├── CIL.user ├── CIL.vcxproj ├── CIL.vcxproj.filters ├── Hook.cpp ├── Main.cpp ├── Resman.cpp ├── detours.h └── detours.lib ├── LICENSE ├── README.md └── functions ├── GMS_v59.txt ├── GMS_v62.txt ├── GMS_v83.txt ├── GMS_v92.txt └── GMS_v95.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /CIL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL.sln -------------------------------------------------------------------------------- /CIL/APIDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/APIDummy.h -------------------------------------------------------------------------------- /CIL/CIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/CIL.h -------------------------------------------------------------------------------- /CIL/CIL.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/CIL.user -------------------------------------------------------------------------------- /CIL/CIL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/CIL.vcxproj -------------------------------------------------------------------------------- /CIL/CIL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/CIL.vcxproj.filters -------------------------------------------------------------------------------- /CIL/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/Hook.cpp -------------------------------------------------------------------------------- /CIL/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/Main.cpp -------------------------------------------------------------------------------- /CIL/Resman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/Resman.cpp -------------------------------------------------------------------------------- /CIL/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/detours.h -------------------------------------------------------------------------------- /CIL/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/CIL/detours.lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/README.md -------------------------------------------------------------------------------- /functions/GMS_v59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/functions/GMS_v59.txt -------------------------------------------------------------------------------- /functions/GMS_v62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/functions/GMS_v62.txt -------------------------------------------------------------------------------- /functions/GMS_v83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/functions/GMS_v83.txt -------------------------------------------------------------------------------- /functions/GMS_v92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/functions/GMS_v92.txt -------------------------------------------------------------------------------- /functions/GMS_v95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapleMyth/ClientImageLoader/HEAD/functions/GMS_v95.txt --------------------------------------------------------------------------------