├── .gitignore ├── DLLLoad.sln ├── DLLLoad ├── DLLLoad.vcxproj ├── DLLLoad.vcxproj.filters └── Source.cpp ├── LICENSE ├── MyDLL ├── Header.h ├── MyDLL.vcxproj ├── MyDLL.vcxproj.filters ├── Source.def ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /DLLLoad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/DLLLoad.sln -------------------------------------------------------------------------------- /DLLLoad/DLLLoad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/DLLLoad/DLLLoad.vcxproj -------------------------------------------------------------------------------- /DLLLoad/DLLLoad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/DLLLoad/DLLLoad.vcxproj.filters -------------------------------------------------------------------------------- /DLLLoad/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/DLLLoad/Source.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /MyDLL/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/Header.h -------------------------------------------------------------------------------- /MyDLL/MyDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/MyDLL.vcxproj -------------------------------------------------------------------------------- /MyDLL/MyDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/MyDLL.vcxproj.filters -------------------------------------------------------------------------------- /MyDLL/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/Source.def -------------------------------------------------------------------------------- /MyDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/dllmain.cpp -------------------------------------------------------------------------------- /MyDLL/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/framework.h -------------------------------------------------------------------------------- /MyDLL/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/pch.cpp -------------------------------------------------------------------------------- /MyDLL/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/MyDLL/pch.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbhaxor/Win-LoadLibrary/HEAD/README.md --------------------------------------------------------------------------------