├── .gitignore ├── LICENSE ├── README.txt ├── source ├── Extender.cpp ├── Extender.h ├── Script.cpp ├── Script.h ├── dversion.rc ├── moatyedg.h ├── resource.h ├── shared.cpp └── shared.h └── winproj ├── Backup └── script.sln ├── Debug ├── LeechProtectionRemovalHelp.ilk ├── LeechProtectionRemovalHelp.pdb ├── LeechProtectionRemovalHelp.x32 ├── Script.exp ├── Script.lib ├── Script.log ├── Script.obj ├── Script.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Script.lastbuildstate │ ├── Script.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ └── rc.write.1.tlog ├── dversion.res └── vc141.pdb ├── Release ├── LeechProtectionRemovalHelp.pdb ├── LeechProtectionRemovalHelp.x32 ├── Script.exp ├── Script.lib ├── Script.log ├── Script.obj ├── Script.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Script.lastbuildstate │ ├── Script.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ └── rc.write.1.tlog ├── dversion.res └── vc141.pdb ├── Script.aps ├── Script.rc ├── Script.vcxproj ├── Script.vcxproj.filters ├── Script.vcxproj.user ├── UpgradeLog.htm ├── resource.h ├── script.def ├── script.sdf ├── script.sln └── script.vcproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/README.txt -------------------------------------------------------------------------------- /source/Extender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/Extender.cpp -------------------------------------------------------------------------------- /source/Extender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/Extender.h -------------------------------------------------------------------------------- /source/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/Script.cpp -------------------------------------------------------------------------------- /source/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/Script.h -------------------------------------------------------------------------------- /source/dversion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/dversion.rc -------------------------------------------------------------------------------- /source/moatyedg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/moatyedg.h -------------------------------------------------------------------------------- /source/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/resource.h -------------------------------------------------------------------------------- /source/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/shared.cpp -------------------------------------------------------------------------------- /source/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/source/shared.h -------------------------------------------------------------------------------- /winproj/Backup/script.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Backup/script.sln -------------------------------------------------------------------------------- /winproj/Debug/LeechProtectionRemovalHelp.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/LeechProtectionRemovalHelp.ilk -------------------------------------------------------------------------------- /winproj/Debug/LeechProtectionRemovalHelp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/LeechProtectionRemovalHelp.pdb -------------------------------------------------------------------------------- /winproj/Debug/LeechProtectionRemovalHelp.x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/LeechProtectionRemovalHelp.x32 -------------------------------------------------------------------------------- /winproj/Debug/Script.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.exp -------------------------------------------------------------------------------- /winproj/Debug/Script.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.lib -------------------------------------------------------------------------------- /winproj/Debug/Script.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.log -------------------------------------------------------------------------------- /winproj/Debug/Script.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.obj -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/Script.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/Script.lastbuildstate -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/Script.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/Script.write.1u.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/Script.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/Script.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /winproj/Debug/dversion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/dversion.res -------------------------------------------------------------------------------- /winproj/Debug/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Debug/vc141.pdb -------------------------------------------------------------------------------- /winproj/Release/LeechProtectionRemovalHelp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/LeechProtectionRemovalHelp.pdb -------------------------------------------------------------------------------- /winproj/Release/LeechProtectionRemovalHelp.x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/LeechProtectionRemovalHelp.x32 -------------------------------------------------------------------------------- /winproj/Release/Script.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.exp -------------------------------------------------------------------------------- /winproj/Release/Script.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.lib -------------------------------------------------------------------------------- /winproj/Release/Script.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.log -------------------------------------------------------------------------------- /winproj/Release/Script.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.obj -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/Script.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/Script.lastbuildstate -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/Script.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/Script.write.1u.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /winproj/Release/Script.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/Script.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /winproj/Release/dversion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/dversion.res -------------------------------------------------------------------------------- /winproj/Release/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Release/vc141.pdb -------------------------------------------------------------------------------- /winproj/Script.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Script.aps -------------------------------------------------------------------------------- /winproj/Script.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Script.rc -------------------------------------------------------------------------------- /winproj/Script.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Script.vcxproj -------------------------------------------------------------------------------- /winproj/Script.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Script.vcxproj.filters -------------------------------------------------------------------------------- /winproj/Script.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/Script.vcxproj.user -------------------------------------------------------------------------------- /winproj/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/UpgradeLog.htm -------------------------------------------------------------------------------- /winproj/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/resource.h -------------------------------------------------------------------------------- /winproj/script.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/script.def -------------------------------------------------------------------------------- /winproj/script.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/script.sdf -------------------------------------------------------------------------------- /winproj/script.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/script.sln -------------------------------------------------------------------------------- /winproj/script.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomysshadow/LeechProtectionRemovalHelp-Xtra/HEAD/winproj/script.vcproj --------------------------------------------------------------------------------