├── LICENSE ├── README.md ├── png ├── x64.png └── x86.png └── src ├── Cplus.aps ├── Cplus.sln ├── Cplus.vcxproj ├── Cplus.vcxproj.filters ├── Cplus.vcxproj.user ├── Main.cpp ├── MyHook.cpp ├── MyHook.h ├── struct.h └── testDll ├── dllmain.cpp ├── pch.cpp └── pch.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/README.md -------------------------------------------------------------------------------- /png/x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/png/x64.png -------------------------------------------------------------------------------- /png/x86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/png/x86.png -------------------------------------------------------------------------------- /src/Cplus.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Cplus.aps -------------------------------------------------------------------------------- /src/Cplus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Cplus.sln -------------------------------------------------------------------------------- /src/Cplus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Cplus.vcxproj -------------------------------------------------------------------------------- /src/Cplus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Cplus.vcxproj.filters -------------------------------------------------------------------------------- /src/Cplus.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Cplus.vcxproj.user -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MyHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/MyHook.cpp -------------------------------------------------------------------------------- /src/MyHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/MyHook.h -------------------------------------------------------------------------------- /src/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/struct.h -------------------------------------------------------------------------------- /src/testDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/testDll/dllmain.cpp -------------------------------------------------------------------------------- /src/testDll/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/testDll/pch.cpp -------------------------------------------------------------------------------- /src/testDll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Normal-User/MemoryDll-DllRedirect/HEAD/src/testDll/pch.h --------------------------------------------------------------------------------