├── .gitattributes ├── .gitignore ├── LoadDll.sln ├── LoadDll ├── LoadDll.aps ├── LoadDll.cpp ├── LoadDll.h ├── LoadDll.rc ├── LoadDll.vcxproj ├── LoadDll.vcxproj.filters ├── LoadDll.vcxproj.user ├── LoadDllDlg.cpp ├── LoadDllDlg.h ├── MemoryModule.cpp ├── MemoryModule.h ├── Release │ └── LoadDll.res ├── disasm │ ├── LDE64.asm │ ├── LDE64.bin │ ├── LDE64.h │ ├── LDE64.lib │ ├── LDE64x64.asm │ ├── LDE64x64.bin │ └── LDE64x64.lib ├── res │ ├── LoadDll.rc2 │ └── dll.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ └── Release │ └── LoadDll.res ├── README.md ├── Release ├── LoadDll.exe ├── LoadDll_x64.exe └── testdll │ ├── TestDll.dll │ └── TestDll_x64.dll ├── TestDll ├── ReadMe.txt ├── TestDll.cpp ├── TestDll.vcxproj ├── TestDll.vcxproj.filters ├── TestDll.vcxproj.user ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── screenshot1.jpg ├── screenshot2.jpg ├── screenshot3.jpg └── todo.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/.gitignore -------------------------------------------------------------------------------- /LoadDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll.sln -------------------------------------------------------------------------------- /LoadDll/LoadDll.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.aps -------------------------------------------------------------------------------- /LoadDll/LoadDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.cpp -------------------------------------------------------------------------------- /LoadDll/LoadDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.h -------------------------------------------------------------------------------- /LoadDll/LoadDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.rc -------------------------------------------------------------------------------- /LoadDll/LoadDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.vcxproj -------------------------------------------------------------------------------- /LoadDll/LoadDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.vcxproj.filters -------------------------------------------------------------------------------- /LoadDll/LoadDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDll.vcxproj.user -------------------------------------------------------------------------------- /LoadDll/LoadDllDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDllDlg.cpp -------------------------------------------------------------------------------- /LoadDll/LoadDllDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/LoadDllDlg.h -------------------------------------------------------------------------------- /LoadDll/MemoryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/MemoryModule.cpp -------------------------------------------------------------------------------- /LoadDll/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/MemoryModule.h -------------------------------------------------------------------------------- /LoadDll/Release/LoadDll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/Release/LoadDll.res -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64.asm -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64.bin -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64.h -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64.lib -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64x64.asm -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64x64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64x64.bin -------------------------------------------------------------------------------- /LoadDll/disasm/LDE64x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/disasm/LDE64x64.lib -------------------------------------------------------------------------------- /LoadDll/res/LoadDll.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/res/LoadDll.rc2 -------------------------------------------------------------------------------- /LoadDll/res/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/res/dll.ico -------------------------------------------------------------------------------- /LoadDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/resource.h -------------------------------------------------------------------------------- /LoadDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/stdafx.cpp -------------------------------------------------------------------------------- /LoadDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/stdafx.h -------------------------------------------------------------------------------- /LoadDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/targetver.h -------------------------------------------------------------------------------- /LoadDll/x64/Release/LoadDll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/LoadDll/x64/Release/LoadDll.res -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/README.md -------------------------------------------------------------------------------- /Release/LoadDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/Release/LoadDll.exe -------------------------------------------------------------------------------- /Release/LoadDll_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/Release/LoadDll_x64.exe -------------------------------------------------------------------------------- /Release/testdll/TestDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/Release/testdll/TestDll.dll -------------------------------------------------------------------------------- /Release/testdll/TestDll_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/Release/testdll/TestDll_x64.dll -------------------------------------------------------------------------------- /TestDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/ReadMe.txt -------------------------------------------------------------------------------- /TestDll/TestDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/TestDll.cpp -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/TestDll.vcxproj -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/TestDll.vcxproj.filters -------------------------------------------------------------------------------- /TestDll/TestDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/TestDll.vcxproj.user -------------------------------------------------------------------------------- /TestDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/dllmain.cpp -------------------------------------------------------------------------------- /TestDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/stdafx.cpp -------------------------------------------------------------------------------- /TestDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/stdafx.h -------------------------------------------------------------------------------- /TestDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/TestDll/targetver.h -------------------------------------------------------------------------------- /screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/screenshot1.jpg -------------------------------------------------------------------------------- /screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/screenshot2.jpg -------------------------------------------------------------------------------- /screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/screenshot3.jpg -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edix/LoadDll/HEAD/todo.txt --------------------------------------------------------------------------------