├── .gitignore ├── LICENSE ├── hijackdll_helper.py ├── readme.md ├── sideload.c └── test ├── name_mangling.c ├── name_mangling~.c └── test_dll.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /hijackdll_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/hijackdll_helper.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/readme.md -------------------------------------------------------------------------------- /sideload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/sideload.c -------------------------------------------------------------------------------- /test/name_mangling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/test/name_mangling.c -------------------------------------------------------------------------------- /test/name_mangling~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/test/name_mangling~.c -------------------------------------------------------------------------------- /test/test_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifenjoiner/hijackdll_helper/HEAD/test/test_dll.c --------------------------------------------------------------------------------