├── .gitignore ├── .gitmodules ├── LICENSE ├── Load64bitDll.sln ├── Load64bitDll ├── Load64bitDll.cpp ├── Load64bitDll.vcxproj ├── Load64bitDll.vcxproj.filters ├── X64Call.cpp └── lgpl-3.0.txt ├── Load64bitTest ├── Load64bitTest.vcxproj ├── Load64bitTest.vcxproj.filters └── main.cpp ├── README.md ├── include └── Load64bitDll.h └── wow64hlp ├── gdicookie.cpp ├── ldrinit.cpp ├── ntdllp.h ├── wow64hlp.cpp ├── wow64hlp.h ├── wow64hlp.vcxproj └── wow64hlp.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/LICENSE -------------------------------------------------------------------------------- /Load64bitDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll.sln -------------------------------------------------------------------------------- /Load64bitDll/Load64bitDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll/Load64bitDll.cpp -------------------------------------------------------------------------------- /Load64bitDll/Load64bitDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll/Load64bitDll.vcxproj -------------------------------------------------------------------------------- /Load64bitDll/Load64bitDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll/Load64bitDll.vcxproj.filters -------------------------------------------------------------------------------- /Load64bitDll/X64Call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll/X64Call.cpp -------------------------------------------------------------------------------- /Load64bitDll/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitDll/lgpl-3.0.txt -------------------------------------------------------------------------------- /Load64bitTest/Load64bitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitTest/Load64bitTest.vcxproj -------------------------------------------------------------------------------- /Load64bitTest/Load64bitTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitTest/Load64bitTest.vcxproj.filters -------------------------------------------------------------------------------- /Load64bitTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/Load64bitTest/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Load64bitDLL 2 | 3 | -------------------------------------------------------------------------------- /include/Load64bitDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/include/Load64bitDll.h -------------------------------------------------------------------------------- /wow64hlp/gdicookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/gdicookie.cpp -------------------------------------------------------------------------------- /wow64hlp/ldrinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/ldrinit.cpp -------------------------------------------------------------------------------- /wow64hlp/ntdllp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/ntdllp.h -------------------------------------------------------------------------------- /wow64hlp/wow64hlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/wow64hlp.cpp -------------------------------------------------------------------------------- /wow64hlp/wow64hlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/wow64hlp.h -------------------------------------------------------------------------------- /wow64hlp/wow64hlp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/wow64hlp.vcxproj -------------------------------------------------------------------------------- /wow64hlp/wow64hlp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otya128/Load64bitDLL/HEAD/wow64hlp/wow64hlp.vcxproj.filters --------------------------------------------------------------------------------