├── CiDemoDriver ├── .gitignore ├── CiDemoDriver.sln ├── CiDemoDriver │ ├── CiDemoDriver.inf │ ├── CiDemoDriver.vcxproj │ ├── CiDemoDriver.vcxproj.filters │ ├── CiDemoDriver.vcxproj.user │ └── ImportLibs │ │ ├── x64 │ │ └── ci.lib │ │ └── x86 │ │ └── ci.lib ├── RAIIUtils.h ├── SignatureCheck.cpp ├── SignatureCheck.h ├── ci.h └── main.cpp ├── ExecutablesForTesting └── notepad++.exe ├── GeneratingLibFiles ├── CiStubs.cpp ├── README.md ├── ci.def └── main.cpp ├── LICENSE.txt └── README.md /CiDemoDriver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/.gitignore -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver.sln -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/CiDemoDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/CiDemoDriver.inf -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj.filters -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/CiDemoDriver.vcxproj.user -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/ImportLibs/x64/ci.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/ImportLibs/x64/ci.lib -------------------------------------------------------------------------------- /CiDemoDriver/CiDemoDriver/ImportLibs/x86/ci.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/CiDemoDriver/ImportLibs/x86/ci.lib -------------------------------------------------------------------------------- /CiDemoDriver/RAIIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/RAIIUtils.h -------------------------------------------------------------------------------- /CiDemoDriver/SignatureCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/SignatureCheck.cpp -------------------------------------------------------------------------------- /CiDemoDriver/SignatureCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/SignatureCheck.h -------------------------------------------------------------------------------- /CiDemoDriver/ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/ci.h -------------------------------------------------------------------------------- /CiDemoDriver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/CiDemoDriver/main.cpp -------------------------------------------------------------------------------- /ExecutablesForTesting/notepad++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/ExecutablesForTesting/notepad++.exe -------------------------------------------------------------------------------- /GeneratingLibFiles/CiStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/GeneratingLibFiles/CiStubs.cpp -------------------------------------------------------------------------------- /GeneratingLibFiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/GeneratingLibFiles/README.md -------------------------------------------------------------------------------- /GeneratingLibFiles/ci.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/GeneratingLibFiles/ci.def -------------------------------------------------------------------------------- /GeneratingLibFiles/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ido-Moshe-Github/CiDllDemo/HEAD/README.md --------------------------------------------------------------------------------