├── README.md ├── clean ├── makefile ├── objfre_win7_ia64 │ └── ia64 │ │ └── _objects.mac └── sources ├── dirs ├── inc ├── anarchy.h └── ioctls.h ├── main.c └── sources.inc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/README.md -------------------------------------------------------------------------------- /clean/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /clean/objfre_win7_ia64/ia64/_objects.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/clean/objfre_win7_ia64/ia64/_objects.mac -------------------------------------------------------------------------------- /clean/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/clean/sources -------------------------------------------------------------------------------- /dirs: -------------------------------------------------------------------------------- 1 | DIRS=clean -------------------------------------------------------------------------------- /inc/anarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/inc/anarchy.h -------------------------------------------------------------------------------- /inc/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/inc/ioctls.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/main.c -------------------------------------------------------------------------------- /sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wekillpeople/protect-process/HEAD/sources.inc --------------------------------------------------------------------------------