├── .gitattributes ├── .gitignore ├── ExampleDLL ├── ExampleDLL.vcxproj ├── ExampleDLL.vcxproj.filters ├── ExampleDLL.vcxproj.user ├── dllmain.cpp ├── framework.h ├── pch.cpp ├── pch.h └── x64 │ └── Release │ ├── ExampleDLL.dll.recipe │ ├── ExampleDLL.log │ ├── ExampleDLL.pch │ ├── ExampleDLL.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── ExampleDLL.lastbuildstate │ ├── ExampleDLL.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.delete.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── dllmain.obj │ ├── pch.obj │ └── vc142.pdb ├── ExternalHooking.sln ├── ExternalHooking ├── ExternalHooking.cpp ├── ExternalHooking.hpp ├── ExternalHooking.vcxproj ├── ExternalHooking.vcxproj.filters ├── ExternalHooking.vcxproj.user ├── LICENSE ├── README.md └── x64 │ └── Release │ ├── ExternalHooking.exe.recipe │ ├── ExternalHooking.log │ ├── ExternalHooking.obj │ ├── ExternalHooking.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── ExternalHooking.lastbuildstate │ ├── ExternalHooking.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── Exthook.obj │ └── vc142.pdb ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleDLL/ExampleDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/ExampleDLL.vcxproj -------------------------------------------------------------------------------- /ExampleDLL/ExampleDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/ExampleDLL.vcxproj.filters -------------------------------------------------------------------------------- /ExampleDLL/ExampleDLL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/ExampleDLL.vcxproj.user -------------------------------------------------------------------------------- /ExampleDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/dllmain.cpp -------------------------------------------------------------------------------- /ExampleDLL/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/framework.h -------------------------------------------------------------------------------- /ExampleDLL/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/pch.cpp -------------------------------------------------------------------------------- /ExampleDLL/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/pch.h -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.dll.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.dll.recipe -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.log -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.pch -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/ExampleDLL.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/ExampleDLL.lastbuildstate -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/ExampleDLL.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/ExampleDLL.write.1u.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/link.delete.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/link.delete.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/ExampleDLL.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/ExampleDLL.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/dllmain.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/dllmain.obj -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/pch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/pch.obj -------------------------------------------------------------------------------- /ExampleDLL/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExampleDLL/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /ExternalHooking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking.sln -------------------------------------------------------------------------------- /ExternalHooking/ExternalHooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/ExternalHooking.cpp -------------------------------------------------------------------------------- /ExternalHooking/ExternalHooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/ExternalHooking.hpp -------------------------------------------------------------------------------- /ExternalHooking/ExternalHooking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/ExternalHooking.vcxproj -------------------------------------------------------------------------------- /ExternalHooking/ExternalHooking.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/ExternalHooking.vcxproj.filters -------------------------------------------------------------------------------- /ExternalHooking/ExternalHooking.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/ExternalHooking.vcxproj.user -------------------------------------------------------------------------------- /ExternalHooking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/LICENSE -------------------------------------------------------------------------------- /ExternalHooking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/README.md -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.exe.recipe -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.log -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.obj -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/ExternalHooking.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/ExternalHooking.lastbuildstate -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/ExternalHooking.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/ExternalHooking.write.1u.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/ExternalHooking.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/ExternalHooking.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/Exthook.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/Exthook.obj -------------------------------------------------------------------------------- /ExternalHooking/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/ExternalHooking/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illegal-instruction-co/II-ExternalHookingLib/HEAD/README.md --------------------------------------------------------------------------------