├── .gitignore ├── ASM ├── MgAsmBase.cpp ├── MgAsmCom.cpp ├── MgAsmCom.h ├── MgAsmComDef.h ├── MgDisasm.cpp └── MgDisasmBase.cpp ├── CreateGif ├── GSKCreateGIF.cpp ├── GSKCreateGIF.h ├── Quantizer.cpp ├── Quantizer.h ├── SelTransparentColorDlg.cpp └── SelTransparentColorDlg.h ├── DLLMODUL.CPP ├── DXBind.cpp ├── DXBind.h ├── KeyMouse ├── MyKeyboardNamespace.cpp ├── MyKeyboardNamespace.h ├── MyMouseNamespace.cpp └── MyMouseNamespace.h ├── MapFile.cpp ├── MapFile.h ├── README.md ├── ReadMe.txt ├── TCProtect_se ├── TCProtect_se.sys.tyuyan#$%0409zlc ├── TSFindPicture.cpp ├── TSFindPicture.h ├── TSHookFuntion.h ├── TSMemoryAPI.cpp ├── TSMemoryAPI.h ├── TSMessage.h ├── TSMyKernel32DllFuntion.h ├── TSMyKernel32User32DllFuntion.cpp ├── TSMyUser32DllFuntion.h ├── TSPlug.aps ├── TSPlug.cpp ├── TSPlug.def ├── TSPlug.idl ├── TSPlug.rc ├── TSPlug.rgs ├── TSPlug.sln ├── TSPlug.vcproj ├── TSPlug.vcproj.think-THINK.Administrator.user ├── TSPlug.vcproj.zlc-PC.zlc.user ├── TSPlug.vcxproj ├── TSPlug.vcxproj.filters ├── TSPlug.vcxproj.user ├── TSPlugInterFace.cpp ├── TSPlugInterFace.h ├── TSPlugInterFace.rgs ├── TSPlugPS.vcproj ├── TSPlugPS.vcproj.think-THINK.Administrator.user ├── TSPlugPS.vcproj.zlc-PC.zlc.user ├── TSPlugPS.vcxproj ├── TSPlugPS.vcxproj.filters ├── TSPlug_i.c ├── TSPlug_i.h ├── TSPlug_p.c ├── TSPlugps.def ├── TSRuntime.cpp ├── TSRuntime.h ├── TSVIPHookFuntion.h ├── TSWindowsAPI.cpp ├── TSWindowsAPI.cpp~RF14b6222.TMP ├── TSWindowsAPI.h ├── Toolhelp.h ├── Ts.chm ├── UpgradeLog.htm ├── UpgradeLog2.htm ├── d3dx9.h ├── d3dx9anim.h ├── d3dx9core.h ├── d3dx9effect.h ├── d3dx9math.h ├── d3dx9math.inl ├── d3dx9mesh.h ├── d3dx9shader.h ├── d3dx9shape.h ├── d3dx9tex.h ├── d3dx9xof.h ├── dlldata.c ├── dllmain.cpp ├── dllmain.h ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── ve-8EF.tmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/.gitignore -------------------------------------------------------------------------------- /ASM/MgAsmBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgAsmBase.cpp -------------------------------------------------------------------------------- /ASM/MgAsmCom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgAsmCom.cpp -------------------------------------------------------------------------------- /ASM/MgAsmCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgAsmCom.h -------------------------------------------------------------------------------- /ASM/MgAsmComDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgAsmComDef.h -------------------------------------------------------------------------------- /ASM/MgDisasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgDisasm.cpp -------------------------------------------------------------------------------- /ASM/MgDisasmBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ASM/MgDisasmBase.cpp -------------------------------------------------------------------------------- /CreateGif/GSKCreateGIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/GSKCreateGIF.cpp -------------------------------------------------------------------------------- /CreateGif/GSKCreateGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/GSKCreateGIF.h -------------------------------------------------------------------------------- /CreateGif/Quantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/Quantizer.cpp -------------------------------------------------------------------------------- /CreateGif/Quantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/Quantizer.h -------------------------------------------------------------------------------- /CreateGif/SelTransparentColorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/SelTransparentColorDlg.cpp -------------------------------------------------------------------------------- /CreateGif/SelTransparentColorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/CreateGif/SelTransparentColorDlg.h -------------------------------------------------------------------------------- /DLLMODUL.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/DLLMODUL.CPP -------------------------------------------------------------------------------- /DXBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/DXBind.cpp -------------------------------------------------------------------------------- /DXBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/DXBind.h -------------------------------------------------------------------------------- /KeyMouse/MyKeyboardNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/KeyMouse/MyKeyboardNamespace.cpp -------------------------------------------------------------------------------- /KeyMouse/MyKeyboardNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/KeyMouse/MyKeyboardNamespace.h -------------------------------------------------------------------------------- /KeyMouse/MyMouseNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/KeyMouse/MyMouseNamespace.cpp -------------------------------------------------------------------------------- /KeyMouse/MyMouseNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/KeyMouse/MyMouseNamespace.h -------------------------------------------------------------------------------- /MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/MapFile.cpp -------------------------------------------------------------------------------- /MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/MapFile.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /TCProtect_se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TCProtect_se -------------------------------------------------------------------------------- /TCProtect_se.sys.tyuyan#$%0409zlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TCProtect_se.sys.tyuyan#$%0409zlc -------------------------------------------------------------------------------- /TSFindPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSFindPicture.cpp -------------------------------------------------------------------------------- /TSFindPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSFindPicture.h -------------------------------------------------------------------------------- /TSHookFuntion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSHookFuntion.h -------------------------------------------------------------------------------- /TSMemoryAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMemoryAPI.cpp -------------------------------------------------------------------------------- /TSMemoryAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMemoryAPI.h -------------------------------------------------------------------------------- /TSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMessage.h -------------------------------------------------------------------------------- /TSMyKernel32DllFuntion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMyKernel32DllFuntion.h -------------------------------------------------------------------------------- /TSMyKernel32User32DllFuntion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMyKernel32User32DllFuntion.cpp -------------------------------------------------------------------------------- /TSMyUser32DllFuntion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSMyUser32DllFuntion.h -------------------------------------------------------------------------------- /TSPlug.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.aps -------------------------------------------------------------------------------- /TSPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.cpp -------------------------------------------------------------------------------- /TSPlug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.def -------------------------------------------------------------------------------- /TSPlug.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.idl -------------------------------------------------------------------------------- /TSPlug.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.rc -------------------------------------------------------------------------------- /TSPlug.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.rgs -------------------------------------------------------------------------------- /TSPlug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.sln -------------------------------------------------------------------------------- /TSPlug.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcproj -------------------------------------------------------------------------------- /TSPlug.vcproj.think-THINK.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcproj.think-THINK.Administrator.user -------------------------------------------------------------------------------- /TSPlug.vcproj.zlc-PC.zlc.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcproj.zlc-PC.zlc.user -------------------------------------------------------------------------------- /TSPlug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcxproj -------------------------------------------------------------------------------- /TSPlug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcxproj.filters -------------------------------------------------------------------------------- /TSPlug.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug.vcxproj.user -------------------------------------------------------------------------------- /TSPlugInterFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugInterFace.cpp -------------------------------------------------------------------------------- /TSPlugInterFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugInterFace.h -------------------------------------------------------------------------------- /TSPlugInterFace.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugInterFace.rgs -------------------------------------------------------------------------------- /TSPlugPS.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugPS.vcproj -------------------------------------------------------------------------------- /TSPlugPS.vcproj.think-THINK.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugPS.vcproj.think-THINK.Administrator.user -------------------------------------------------------------------------------- /TSPlugPS.vcproj.zlc-PC.zlc.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugPS.vcproj.zlc-PC.zlc.user -------------------------------------------------------------------------------- /TSPlugPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugPS.vcxproj -------------------------------------------------------------------------------- /TSPlugPS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugPS.vcxproj.filters -------------------------------------------------------------------------------- /TSPlug_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug_i.c -------------------------------------------------------------------------------- /TSPlug_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug_i.h -------------------------------------------------------------------------------- /TSPlug_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlug_p.c -------------------------------------------------------------------------------- /TSPlugps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSPlugps.def -------------------------------------------------------------------------------- /TSRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSRuntime.cpp -------------------------------------------------------------------------------- /TSRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSRuntime.h -------------------------------------------------------------------------------- /TSVIPHookFuntion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSVIPHookFuntion.h -------------------------------------------------------------------------------- /TSWindowsAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSWindowsAPI.cpp -------------------------------------------------------------------------------- /TSWindowsAPI.cpp~RF14b6222.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSWindowsAPI.cpp~RF14b6222.TMP -------------------------------------------------------------------------------- /TSWindowsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/TSWindowsAPI.h -------------------------------------------------------------------------------- /Toolhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/Toolhelp.h -------------------------------------------------------------------------------- /Ts.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/Ts.chm -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /UpgradeLog2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/UpgradeLog2.htm -------------------------------------------------------------------------------- /d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9.h -------------------------------------------------------------------------------- /d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9anim.h -------------------------------------------------------------------------------- /d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9core.h -------------------------------------------------------------------------------- /d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9effect.h -------------------------------------------------------------------------------- /d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9math.h -------------------------------------------------------------------------------- /d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9math.inl -------------------------------------------------------------------------------- /d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9mesh.h -------------------------------------------------------------------------------- /d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9shader.h -------------------------------------------------------------------------------- /d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9shape.h -------------------------------------------------------------------------------- /d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9tex.h -------------------------------------------------------------------------------- /d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/d3dx9xof.h -------------------------------------------------------------------------------- /dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/dlldata.c -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/dllmain.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/targetver.h -------------------------------------------------------------------------------- /ve-8EF.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojunxin/TSPlug/HEAD/ve-8EF.tmp --------------------------------------------------------------------------------