├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── premake5.cmd ├── premake5.exe ├── premake5.lua ├── readme.md └── source ├── dllmain.cpp ├── dllmain.h ├── x64.def ├── x86.def └── xliveless.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/LICENSE -------------------------------------------------------------------------------- /premake5.cmd: -------------------------------------------------------------------------------- 1 | premake5 vs2015 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/premake5.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/readme.md -------------------------------------------------------------------------------- /source/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/source/dllmain.cpp -------------------------------------------------------------------------------- /source/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/source/dllmain.h -------------------------------------------------------------------------------- /source/x64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/source/x64.def -------------------------------------------------------------------------------- /source/x86.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/source/x86.def -------------------------------------------------------------------------------- /source/xliveless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aap/simpledllloader/HEAD/source/xliveless.h --------------------------------------------------------------------------------