├── .gitignore ├── README.md ├── Release ├── XTvClient.exe └── XTvClientDll.dll ├── XTvClient.sln ├── XTvClient ├── ReadMe.txt ├── XTvClient.cpp ├── XTvClient.vcxproj ├── XTvClient.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── XTvClientDll ├── OutPutDebug.cpp ├── OutPutDebug.h ├── TuckTxS.cpp ├── TuckTxS.h ├── XTvClientDll.cpp ├── XTvClientDll.vcxproj ├── XTvClientDll.vcxproj.filters ├── detours ├── include │ ├── detours.h │ ├── detver.h │ └── syelog.h ├── lib.X64 │ ├── detours.lib │ └── syelog.lib └── lib.X86 │ ├── detours.lib │ └── syelog.lib ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/README.md -------------------------------------------------------------------------------- /Release/XTvClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/Release/XTvClient.exe -------------------------------------------------------------------------------- /Release/XTvClientDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/Release/XTvClientDll.dll -------------------------------------------------------------------------------- /XTvClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient.sln -------------------------------------------------------------------------------- /XTvClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/ReadMe.txt -------------------------------------------------------------------------------- /XTvClient/XTvClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/XTvClient.cpp -------------------------------------------------------------------------------- /XTvClient/XTvClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/XTvClient.vcxproj -------------------------------------------------------------------------------- /XTvClient/XTvClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/XTvClient.vcxproj.filters -------------------------------------------------------------------------------- /XTvClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/stdafx.cpp -------------------------------------------------------------------------------- /XTvClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/stdafx.h -------------------------------------------------------------------------------- /XTvClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClient/targetver.h -------------------------------------------------------------------------------- /XTvClientDll/OutPutDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/OutPutDebug.cpp -------------------------------------------------------------------------------- /XTvClientDll/OutPutDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/OutPutDebug.h -------------------------------------------------------------------------------- /XTvClientDll/TuckTxS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/TuckTxS.cpp -------------------------------------------------------------------------------- /XTvClientDll/TuckTxS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/TuckTxS.h -------------------------------------------------------------------------------- /XTvClientDll/XTvClientDll.cpp: -------------------------------------------------------------------------------- 1 | // XTvClientDll.cpp : 定义 DLL 应用程序的导出函数。 2 | // 3 | 4 | #include "stdafx.h" 5 | 6 | 7 | -------------------------------------------------------------------------------- /XTvClientDll/XTvClientDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/XTvClientDll.vcxproj -------------------------------------------------------------------------------- /XTvClientDll/XTvClientDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/XTvClientDll.vcxproj.filters -------------------------------------------------------------------------------- /XTvClientDll/detours/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/include/detours.h -------------------------------------------------------------------------------- /XTvClientDll/detours/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/include/detver.h -------------------------------------------------------------------------------- /XTvClientDll/detours/include/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/include/syelog.h -------------------------------------------------------------------------------- /XTvClientDll/detours/lib.X64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/lib.X64/detours.lib -------------------------------------------------------------------------------- /XTvClientDll/detours/lib.X64/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/lib.X64/syelog.lib -------------------------------------------------------------------------------- /XTvClientDll/detours/lib.X86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/lib.X86/detours.lib -------------------------------------------------------------------------------- /XTvClientDll/detours/lib.X86/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/detours/lib.X86/syelog.lib -------------------------------------------------------------------------------- /XTvClientDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/dllmain.cpp -------------------------------------------------------------------------------- /XTvClientDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/stdafx.cpp -------------------------------------------------------------------------------- /XTvClientDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/stdafx.h -------------------------------------------------------------------------------- /XTvClientDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binbibi/XTeamLView/HEAD/XTvClientDll/targetver.h --------------------------------------------------------------------------------