├── .gitattributes ├── Client.aps ├── Client.cpp ├── Client.h ├── Client.rc ├── Client.vcxproj ├── Client.vcxproj.filters ├── Client.vcxproj.user ├── ClientDlg.cpp ├── ClientDlg.h ├── Debug ├── CL.read.1.tlog ├── CL.write.1.tlog ├── Client.exe.embed.manifest ├── Client.exe.embed.manifest.res ├── Client.exe.intermediate.manifest ├── Client.lastbuildstate ├── Client.log ├── Client.obj ├── Client.pch ├── Client.res ├── Client.vcxprojResolveAssemblyReference.cache ├── Client.write.1.tlog ├── ClientDlg.obj ├── Client_manifest.rc ├── FileManageDlg.obj ├── FullScreenTitleBar.obj ├── GetScreenToBitMap.obj ├── Huffman.obj ├── JpegFile.obj ├── JpegLib.lib ├── KeyLogDlg.obj ├── NL_QQwry.obj ├── ProcManageDlg.obj ├── RegManageDlg.obj ├── RemoteDesktopDlg.obj ├── SearchListCtrl.obj ├── ServicManageEditDlg.obj ├── ServiceManageDlg.obj ├── ShellDlg.obj ├── TcpTran.obj ├── VideoManage.obj ├── cl.command.1.tlog ├── link-cvtres.read.1.tlog ├── link-cvtres.write.1.tlog ├── link.12760-cvtres.read.1.tlog ├── link.12760-cvtres.write.1.tlog ├── link.12760.read.1.tlog ├── link.12760.write.1.tlog ├── link.8056-cvtres.read.1.tlog ├── link.8056-cvtres.write.1.tlog ├── link.8056.read.1.tlog ├── link.8056.write.1.tlog ├── link.9960-cvtres.read.1.tlog ├── link.9960-cvtres.write.1.tlog ├── link.9960.read.1.tlog ├── link.9960.write.1.tlog ├── link.command.1.tlog ├── link.read.1.tlog ├── link.write.1.tlog ├── mt.command.1.tlog ├── mt.read.1.tlog ├── mt.write.1.tlog ├── rc.command.1.tlog ├── rc.read.1.tlog ├── rc.write.1.tlog ├── stdafx.obj ├── vc100.idb └── vc100.pdb ├── FileManageDlg.cpp ├── FileManageDlg.h ├── FullScreenTitleBar.cpp ├── FullScreenTitleBar.h ├── FullScreenTitleBarConst.h ├── GetScreenToBitMap.cpp ├── GetScreenToBitMap.h ├── Huffman.cpp ├── Huffman.h ├── JpegFile.cpp ├── JpegFile.h ├── JpegLib.lib ├── KeyLogDlg.cpp ├── KeyLogDlg.h ├── NL_QQwry.cpp ├── NL_QQwry.h ├── ProcManageDlg.cpp ├── ProcManageDlg.h ├── ReadMe.txt ├── RegManageDlg.cpp ├── RegManageDlg.h ├── Release ├── CL.read.1.tlog ├── CL.write.1.tlog ├── Client.exe.intermediate.manifest ├── Client.lastbuildstate ├── Client.log ├── Client.obj ├── Client.pch ├── Client.res ├── Client.vcxprojResolveAssemblyReference.cache ├── Client.write.1.tlog ├── ClientDlg.obj ├── FileManageDlg.obj ├── FullScreenTitleBar.obj ├── GetScreenToBitMap.obj ├── Huffman.obj ├── JpegFile.obj ├── JpegLib.lib ├── KeyLogDlg.obj ├── NL_QQwry.obj ├── ProcManageDlg.obj ├── RegManageDlg.obj ├── RemoteDesktopDlg.obj ├── SearchListCtrl.obj ├── ServicManageEditDlg.obj ├── ServiceManageDlg.obj ├── ShellDlg.obj ├── TcpTran.obj ├── VideoManage.obj ├── cl.command.1.tlog ├── link-cvtres.read.1.tlog ├── link-cvtres.write.1.tlog ├── link.command.1.tlog ├── link.read.1.tlog ├── link.write.1.tlog ├── mt.command.1.tlog ├── mt.read.1.tlog ├── mt.write.1.tlog ├── rc.command.1.tlog ├── rc.read.1.tlog ├── rc.write.1.tlog ├── stdafx.obj └── vc100.pdb ├── RemoteDesktopDlg.cpp ├── RemoteDesktopDlg.h ├── SearchListCtrl.cpp ├── SearchListCtrl.h ├── ServicManageEditDlg.cpp ├── ServicManageEditDlg.h ├── ServiceManageDlg.cpp ├── ServiceManageDlg.h ├── ShellDlg.cpp ├── ShellDlg.h ├── TcpTran.cpp ├── TcpTran.h ├── VideoManage.cpp ├── VideoManage.h ├── comm.h ├── jpeglib ├── BMPDLG.cpp ├── BMPDLG.h ├── BMPFILE.h ├── Basic.h ├── Bmpfile.cpp ├── CDERROR.h ├── CDJPEG.h ├── Debug │ ├── Jcapimin.obj │ ├── Jcapistd.obj │ ├── Jccoefct.obj │ ├── Jccolor.obj │ ├── Jcdctmgr.obj │ ├── Jchuff.obj │ ├── Jcinit.obj │ ├── Jcmainct.obj │ ├── Jcmarker.obj │ ├── Jcmaster.obj │ ├── Jcomapi.obj │ ├── Jcparam.obj │ ├── Jcphuff.obj │ ├── Jcprepct.obj │ ├── Jcsample.obj │ ├── Jctrans.obj │ ├── Jdapimin.obj │ ├── Jdapistd.obj │ ├── Jdatadst.obj │ ├── Jdatasrc.obj │ ├── Jdcoefct.obj │ ├── Jdcolor.obj │ ├── Jddctmgr.obj │ ├── Jdhuff.obj │ ├── Jdinput.obj │ ├── Jdmainct.obj │ ├── Jdmarker.obj │ ├── Jdmaster.obj │ ├── Jdmerge.obj │ ├── Jdphuff.obj │ ├── Jdpostct.obj │ ├── Jdsample.obj │ ├── Jdtrans.obj │ ├── Jerror.obj │ ├── Jfdctflt.obj │ ├── Jfdctfst.obj │ ├── Jfdctint.obj │ ├── Jidctflt.obj │ ├── Jidctfst.obj │ ├── Jidctint.obj │ ├── Jidctred.obj │ ├── Jmemmgr.obj │ ├── Jmemnobs.obj │ ├── JpegLib.pch │ ├── Jpegtran.obj │ ├── Jquant1.obj │ ├── Jquant2.obj │ ├── Jutils.obj │ └── vc60.idb ├── Dl1quant.cpp ├── Dl1quant.h ├── Dl1quant_bak.cpp ├── JCAPIMIN.c ├── JCAPISTD.c ├── JCCOEFCT.c ├── JCCOLOR.c ├── JCDCTMGR.c ├── JCHUFF.c ├── JCHUFF.h ├── JCINIT.c ├── JCMAINCT.c ├── JCMARKER.c ├── JCMASTER.c ├── JCOMAPI.c ├── JCONFIG.h ├── JCPARAM.c ├── JCPHUFF.c ├── JCPREPCT.c ├── JCSAMPLE.c ├── JCTRANS.c ├── JDAPIMIN.c ├── JDAPISTD.c ├── JDATADST.c ├── JDATASRC.c ├── JDCOEFCT.c ├── JDCOLOR.c ├── JDCT.h ├── JDDCTMGR.c ├── JDHUFF.c ├── JDHUFF.h ├── JDINPUT.c ├── JDMAINCT.c ├── JDMARKER.c ├── JDMASTER.c ├── JDMERGE.c ├── JDPHUFF.c ├── JDPOSTCT.c ├── JDSAMPLE.c ├── JDTRANS.c ├── JERROR.c ├── JERROR.h ├── JFDCTFLT.c ├── JFDCTFST.c ├── JFDCTINT.c ├── JIDCTFLT.c ├── JIDCTFST.c ├── JIDCTINT.c ├── JIDCTRED.c ├── JINCLUDE.h ├── JMEMMGR.c ├── JMEMNOBS.c ├── JMEMSYS.h ├── JMORECFG.h ├── JPEGINT.h ├── JPEGLIB.h ├── JPEGTRAN.c ├── JQUANT1.c ├── JQUANT2.c ├── JUTILS.c ├── JVERSION.h ├── JpegLib.001 ├── JpegLib.dsp ├── JpegLib.dsw ├── JpegLib.lib ├── JpegLib.plg ├── Jpegfile.cpp ├── Jpegfile.h ├── MainFrm.cpp ├── MainFrm.h ├── MfcApp.001 ├── MfcApp.aps ├── MfcApp.cpp ├── MfcApp.dsp ├── MfcApp.dsw ├── MfcApp.h ├── MfcApp.opt ├── MfcApp.plg ├── MfcApp.rc ├── MfcAppDoc.cpp ├── MfcAppDoc.h ├── MfcAppView.cpp ├── MfcAppView.h ├── Quantdlg.cpp ├── Quantdlg.h ├── Release │ ├── Jcapimin.obj │ ├── Jcapistd.obj │ ├── Jccoefct.obj │ ├── Jccolor.obj │ ├── Jcdctmgr.obj │ ├── Jchuff.obj │ ├── Jcinit.obj │ ├── Jcmainct.obj │ ├── Jcmarker.obj │ ├── Jcmaster.obj │ ├── Jcomapi.obj │ ├── Jcparam.obj │ ├── Jcphuff.obj │ ├── Jcprepct.obj │ ├── Jcsample.obj │ ├── Jctrans.obj │ ├── Jdapimin.obj │ ├── Jdapistd.obj │ ├── Jdatadst.obj │ ├── Jdatasrc.obj │ ├── Jdcoefct.obj │ ├── Jdcolor.obj │ ├── Jddctmgr.obj │ ├── Jdhuff.obj │ ├── Jdinput.obj │ ├── Jdmainct.obj │ ├── Jdmarker.obj │ ├── Jdmaster.obj │ ├── Jdmerge.obj │ ├── Jdphuff.obj │ ├── Jdpostct.obj │ ├── Jdsample.obj │ ├── Jdtrans.obj │ ├── Jerror.obj │ ├── Jfdctflt.obj │ ├── Jfdctfst.obj │ ├── Jfdctint.obj │ ├── Jidctflt.obj │ ├── Jidctfst.obj │ ├── Jidctint.obj │ ├── Jidctred.obj │ ├── Jmemmgr.obj │ ├── Jmemnobs.obj │ ├── JpegLib.pch │ ├── Jpegtran.obj │ ├── Jquant1.obj │ ├── Jquant2.obj │ ├── Jutils.obj │ └── vc60.idb ├── StdAfx.cpp ├── StdAfx.h ├── aaa.lst ├── res │ ├── MfcApp.rc2 │ ├── Toolbar.bmp │ ├── mfcapp.ico │ └── mfcapp~1.ico └── resource.h ├── res ├── Client.ico ├── Client.rc2 ├── bitmap1.bmp ├── bitmap2.bmp ├── bmp00001.bmp ├── bmp00002.bmp ├── bmp00003.bmp ├── bmp00004.bmp ├── icon1.ico ├── 光驱.ico ├── 文件夹1.ico ├── 文件夹2.ico ├── 硬盘.ico └── 软驱.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/.gitattributes -------------------------------------------------------------------------------- /Client.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.aps -------------------------------------------------------------------------------- /Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.cpp -------------------------------------------------------------------------------- /Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.h -------------------------------------------------------------------------------- /Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.rc -------------------------------------------------------------------------------- /Client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.vcxproj -------------------------------------------------------------------------------- /Client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.vcxproj.filters -------------------------------------------------------------------------------- /Client.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Client.vcxproj.user -------------------------------------------------------------------------------- /ClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ClientDlg.cpp -------------------------------------------------------------------------------- /ClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ClientDlg.h -------------------------------------------------------------------------------- /Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /Debug/Client.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.exe.embed.manifest -------------------------------------------------------------------------------- /Debug/Client.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.exe.embed.manifest.res -------------------------------------------------------------------------------- /Debug/Client.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.exe.intermediate.manifest -------------------------------------------------------------------------------- /Debug/Client.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\杨杰\documents\visual studio 2010\Projects\Client\| 3 | -------------------------------------------------------------------------------- /Debug/Client.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.log -------------------------------------------------------------------------------- /Debug/Client.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.obj -------------------------------------------------------------------------------- /Debug/Client.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.pch -------------------------------------------------------------------------------- /Debug/Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.res -------------------------------------------------------------------------------- /Debug/Client.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Debug/Client.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/ClientDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/ClientDlg.obj -------------------------------------------------------------------------------- /Debug/Client_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Client_manifest.rc -------------------------------------------------------------------------------- /Debug/FileManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/FileManageDlg.obj -------------------------------------------------------------------------------- /Debug/FullScreenTitleBar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/FullScreenTitleBar.obj -------------------------------------------------------------------------------- /Debug/GetScreenToBitMap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/GetScreenToBitMap.obj -------------------------------------------------------------------------------- /Debug/Huffman.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/Huffman.obj -------------------------------------------------------------------------------- /Debug/JpegFile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/JpegFile.obj -------------------------------------------------------------------------------- /Debug/JpegLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/JpegLib.lib -------------------------------------------------------------------------------- /Debug/KeyLogDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/KeyLogDlg.obj -------------------------------------------------------------------------------- /Debug/NL_QQwry.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/NL_QQwry.obj -------------------------------------------------------------------------------- /Debug/ProcManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/ProcManageDlg.obj -------------------------------------------------------------------------------- /Debug/RegManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/RegManageDlg.obj -------------------------------------------------------------------------------- /Debug/RemoteDesktopDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/RemoteDesktopDlg.obj -------------------------------------------------------------------------------- /Debug/SearchListCtrl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/SearchListCtrl.obj -------------------------------------------------------------------------------- /Debug/ServicManageEditDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/ServicManageEditDlg.obj -------------------------------------------------------------------------------- /Debug/ServiceManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/ServiceManageDlg.obj -------------------------------------------------------------------------------- /Debug/ShellDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/ShellDlg.obj -------------------------------------------------------------------------------- /Debug/TcpTran.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/TcpTran.obj -------------------------------------------------------------------------------- /Debug/VideoManage.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/VideoManage.obj -------------------------------------------------------------------------------- /Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.12760-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.12760-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.12760-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.12760-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.12760.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.12760.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.12760.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.12760.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.8056-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.8056-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.8056-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.8056-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.8056.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.8056.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.8056.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.8056.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9960-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.9960-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9960-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.9960-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9960.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.9960.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9960.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.9960.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/stdafx.obj -------------------------------------------------------------------------------- /Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/vc100.idb -------------------------------------------------------------------------------- /Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Debug/vc100.pdb -------------------------------------------------------------------------------- /FileManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/FileManageDlg.cpp -------------------------------------------------------------------------------- /FileManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/FileManageDlg.h -------------------------------------------------------------------------------- /FullScreenTitleBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/FullScreenTitleBar.cpp -------------------------------------------------------------------------------- /FullScreenTitleBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/FullScreenTitleBar.h -------------------------------------------------------------------------------- /FullScreenTitleBarConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/FullScreenTitleBarConst.h -------------------------------------------------------------------------------- /GetScreenToBitMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/GetScreenToBitMap.cpp -------------------------------------------------------------------------------- /GetScreenToBitMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/GetScreenToBitMap.h -------------------------------------------------------------------------------- /Huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Huffman.cpp -------------------------------------------------------------------------------- /Huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Huffman.h -------------------------------------------------------------------------------- /JpegFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/JpegFile.cpp -------------------------------------------------------------------------------- /JpegFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/JpegFile.h -------------------------------------------------------------------------------- /JpegLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/JpegLib.lib -------------------------------------------------------------------------------- /KeyLogDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/KeyLogDlg.cpp -------------------------------------------------------------------------------- /KeyLogDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/KeyLogDlg.h -------------------------------------------------------------------------------- /NL_QQwry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/NL_QQwry.cpp -------------------------------------------------------------------------------- /NL_QQwry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/NL_QQwry.h -------------------------------------------------------------------------------- /ProcManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ProcManageDlg.cpp -------------------------------------------------------------------------------- /ProcManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ProcManageDlg.h -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /RegManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/RegManageDlg.cpp -------------------------------------------------------------------------------- /RegManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/RegManageDlg.h -------------------------------------------------------------------------------- /Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /Release/Client.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.exe.intermediate.manifest -------------------------------------------------------------------------------- /Release/Client.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | Release|Win32|E:\寒假工作\远控\Client\| 3 | -------------------------------------------------------------------------------- /Release/Client.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.log -------------------------------------------------------------------------------- /Release/Client.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.obj -------------------------------------------------------------------------------- /Release/Client.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.pch -------------------------------------------------------------------------------- /Release/Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.res -------------------------------------------------------------------------------- /Release/Client.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Client.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Release/Client.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Release/ClientDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/ClientDlg.obj -------------------------------------------------------------------------------- /Release/FileManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/FileManageDlg.obj -------------------------------------------------------------------------------- /Release/FullScreenTitleBar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/FullScreenTitleBar.obj -------------------------------------------------------------------------------- /Release/GetScreenToBitMap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/GetScreenToBitMap.obj -------------------------------------------------------------------------------- /Release/Huffman.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/Huffman.obj -------------------------------------------------------------------------------- /Release/JpegFile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/JpegFile.obj -------------------------------------------------------------------------------- /Release/JpegLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/JpegLib.lib -------------------------------------------------------------------------------- /Release/KeyLogDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/KeyLogDlg.obj -------------------------------------------------------------------------------- /Release/NL_QQwry.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/NL_QQwry.obj -------------------------------------------------------------------------------- /Release/ProcManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/ProcManageDlg.obj -------------------------------------------------------------------------------- /Release/RegManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/RegManageDlg.obj -------------------------------------------------------------------------------- /Release/RemoteDesktopDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/RemoteDesktopDlg.obj -------------------------------------------------------------------------------- /Release/SearchListCtrl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/SearchListCtrl.obj -------------------------------------------------------------------------------- /Release/ServicManageEditDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/ServicManageEditDlg.obj -------------------------------------------------------------------------------- /Release/ServiceManageDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/ServiceManageDlg.obj -------------------------------------------------------------------------------- /Release/ShellDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/ShellDlg.obj -------------------------------------------------------------------------------- /Release/TcpTran.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/TcpTran.obj -------------------------------------------------------------------------------- /Release/VideoManage.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/VideoManage.obj -------------------------------------------------------------------------------- /Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /Release/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Release/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/link.command.1.tlog -------------------------------------------------------------------------------- /Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/link.read.1.tlog -------------------------------------------------------------------------------- /Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/link.write.1.tlog -------------------------------------------------------------------------------- /Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /Release/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/rc.command.1.tlog -------------------------------------------------------------------------------- /Release/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/rc.read.1.tlog -------------------------------------------------------------------------------- /Release/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/rc.write.1.tlog -------------------------------------------------------------------------------- /Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/stdafx.obj -------------------------------------------------------------------------------- /Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/Release/vc100.pdb -------------------------------------------------------------------------------- /RemoteDesktopDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/RemoteDesktopDlg.cpp -------------------------------------------------------------------------------- /RemoteDesktopDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/RemoteDesktopDlg.h -------------------------------------------------------------------------------- /SearchListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/SearchListCtrl.cpp -------------------------------------------------------------------------------- /SearchListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/SearchListCtrl.h -------------------------------------------------------------------------------- /ServicManageEditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ServicManageEditDlg.cpp -------------------------------------------------------------------------------- /ServicManageEditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ServicManageEditDlg.h -------------------------------------------------------------------------------- /ServiceManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ServiceManageDlg.cpp -------------------------------------------------------------------------------- /ServiceManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ServiceManageDlg.h -------------------------------------------------------------------------------- /ShellDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ShellDlg.cpp -------------------------------------------------------------------------------- /ShellDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/ShellDlg.h -------------------------------------------------------------------------------- /TcpTran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/TcpTran.cpp -------------------------------------------------------------------------------- /TcpTran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/TcpTran.h -------------------------------------------------------------------------------- /VideoManage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/VideoManage.cpp -------------------------------------------------------------------------------- /VideoManage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/VideoManage.h -------------------------------------------------------------------------------- /comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/comm.h -------------------------------------------------------------------------------- /jpeglib/BMPDLG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/BMPDLG.cpp -------------------------------------------------------------------------------- /jpeglib/BMPDLG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/BMPDLG.h -------------------------------------------------------------------------------- /jpeglib/BMPFILE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/BMPFILE.h -------------------------------------------------------------------------------- /jpeglib/Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Basic.h -------------------------------------------------------------------------------- /jpeglib/Bmpfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Bmpfile.cpp -------------------------------------------------------------------------------- /jpeglib/CDERROR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/CDERROR.h -------------------------------------------------------------------------------- /jpeglib/CDJPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/CDJPEG.h -------------------------------------------------------------------------------- /jpeglib/Debug/Jcapimin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcapimin.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcapistd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcapistd.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jccoefct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jccoefct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jccolor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jccolor.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcdctmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcdctmgr.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jchuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jchuff.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcinit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcinit.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcmainct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcmainct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcmarker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcmarker.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcmaster.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcmaster.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcomapi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcomapi.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcparam.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcparam.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcphuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcphuff.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcprepct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcprepct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jcsample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jcsample.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jctrans.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jctrans.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdapimin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdapimin.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdapistd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdapistd.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdatadst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdatadst.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdatasrc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdatasrc.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdcoefct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdcoefct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdcolor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdcolor.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jddctmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jddctmgr.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdhuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdhuff.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdinput.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdinput.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdmainct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdmainct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdmarker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdmarker.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdmaster.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdmaster.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdmerge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdmerge.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdphuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdphuff.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdpostct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdpostct.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdsample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdsample.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jdtrans.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jdtrans.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jerror.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jfdctflt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jfdctflt.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jfdctfst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jfdctfst.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jfdctint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jfdctint.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jidctflt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jidctflt.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jidctfst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jidctfst.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jidctint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jidctint.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jidctred.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jidctred.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jmemmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jmemmgr.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jmemnobs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jmemnobs.obj -------------------------------------------------------------------------------- /jpeglib/Debug/JpegLib.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/JpegLib.pch -------------------------------------------------------------------------------- /jpeglib/Debug/Jpegtran.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jpegtran.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jquant1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jquant1.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jquant2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jquant2.obj -------------------------------------------------------------------------------- /jpeglib/Debug/Jutils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/Jutils.obj -------------------------------------------------------------------------------- /jpeglib/Debug/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Debug/vc60.idb -------------------------------------------------------------------------------- /jpeglib/Dl1quant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Dl1quant.cpp -------------------------------------------------------------------------------- /jpeglib/Dl1quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Dl1quant.h -------------------------------------------------------------------------------- /jpeglib/Dl1quant_bak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Dl1quant_bak.cpp -------------------------------------------------------------------------------- /jpeglib/JCAPIMIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCAPIMIN.c -------------------------------------------------------------------------------- /jpeglib/JCAPISTD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCAPISTD.c -------------------------------------------------------------------------------- /jpeglib/JCCOEFCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCCOEFCT.c -------------------------------------------------------------------------------- /jpeglib/JCCOLOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCCOLOR.c -------------------------------------------------------------------------------- /jpeglib/JCDCTMGR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCDCTMGR.c -------------------------------------------------------------------------------- /jpeglib/JCHUFF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCHUFF.c -------------------------------------------------------------------------------- /jpeglib/JCHUFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCHUFF.h -------------------------------------------------------------------------------- /jpeglib/JCINIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCINIT.c -------------------------------------------------------------------------------- /jpeglib/JCMAINCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCMAINCT.c -------------------------------------------------------------------------------- /jpeglib/JCMARKER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCMARKER.c -------------------------------------------------------------------------------- /jpeglib/JCMASTER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCMASTER.c -------------------------------------------------------------------------------- /jpeglib/JCOMAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCOMAPI.c -------------------------------------------------------------------------------- /jpeglib/JCONFIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCONFIG.h -------------------------------------------------------------------------------- /jpeglib/JCPARAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCPARAM.c -------------------------------------------------------------------------------- /jpeglib/JCPHUFF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCPHUFF.c -------------------------------------------------------------------------------- /jpeglib/JCPREPCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCPREPCT.c -------------------------------------------------------------------------------- /jpeglib/JCSAMPLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCSAMPLE.c -------------------------------------------------------------------------------- /jpeglib/JCTRANS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JCTRANS.c -------------------------------------------------------------------------------- /jpeglib/JDAPIMIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDAPIMIN.c -------------------------------------------------------------------------------- /jpeglib/JDAPISTD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDAPISTD.c -------------------------------------------------------------------------------- /jpeglib/JDATADST.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDATADST.c -------------------------------------------------------------------------------- /jpeglib/JDATASRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDATASRC.c -------------------------------------------------------------------------------- /jpeglib/JDCOEFCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDCOEFCT.c -------------------------------------------------------------------------------- /jpeglib/JDCOLOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDCOLOR.c -------------------------------------------------------------------------------- /jpeglib/JDCT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDCT.h -------------------------------------------------------------------------------- /jpeglib/JDDCTMGR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDDCTMGR.c -------------------------------------------------------------------------------- /jpeglib/JDHUFF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDHUFF.c -------------------------------------------------------------------------------- /jpeglib/JDHUFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDHUFF.h -------------------------------------------------------------------------------- /jpeglib/JDINPUT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDINPUT.c -------------------------------------------------------------------------------- /jpeglib/JDMAINCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDMAINCT.c -------------------------------------------------------------------------------- /jpeglib/JDMARKER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDMARKER.c -------------------------------------------------------------------------------- /jpeglib/JDMASTER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDMASTER.c -------------------------------------------------------------------------------- /jpeglib/JDMERGE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDMERGE.c -------------------------------------------------------------------------------- /jpeglib/JDPHUFF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDPHUFF.c -------------------------------------------------------------------------------- /jpeglib/JDPOSTCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDPOSTCT.c -------------------------------------------------------------------------------- /jpeglib/JDSAMPLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDSAMPLE.c -------------------------------------------------------------------------------- /jpeglib/JDTRANS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JDTRANS.c -------------------------------------------------------------------------------- /jpeglib/JERROR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JERROR.c -------------------------------------------------------------------------------- /jpeglib/JERROR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JERROR.h -------------------------------------------------------------------------------- /jpeglib/JFDCTFLT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JFDCTFLT.c -------------------------------------------------------------------------------- /jpeglib/JFDCTFST.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JFDCTFST.c -------------------------------------------------------------------------------- /jpeglib/JFDCTINT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JFDCTINT.c -------------------------------------------------------------------------------- /jpeglib/JIDCTFLT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JIDCTFLT.c -------------------------------------------------------------------------------- /jpeglib/JIDCTFST.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JIDCTFST.c -------------------------------------------------------------------------------- /jpeglib/JIDCTINT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JIDCTINT.c -------------------------------------------------------------------------------- /jpeglib/JIDCTRED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JIDCTRED.c -------------------------------------------------------------------------------- /jpeglib/JINCLUDE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JINCLUDE.h -------------------------------------------------------------------------------- /jpeglib/JMEMMGR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JMEMMGR.c -------------------------------------------------------------------------------- /jpeglib/JMEMNOBS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JMEMNOBS.c -------------------------------------------------------------------------------- /jpeglib/JMEMSYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JMEMSYS.h -------------------------------------------------------------------------------- /jpeglib/JMORECFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JMORECFG.h -------------------------------------------------------------------------------- /jpeglib/JPEGINT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JPEGINT.h -------------------------------------------------------------------------------- /jpeglib/JPEGLIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JPEGLIB.h -------------------------------------------------------------------------------- /jpeglib/JPEGTRAN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JPEGTRAN.c -------------------------------------------------------------------------------- /jpeglib/JQUANT1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JQUANT1.c -------------------------------------------------------------------------------- /jpeglib/JQUANT2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JQUANT2.c -------------------------------------------------------------------------------- /jpeglib/JUTILS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JUTILS.c -------------------------------------------------------------------------------- /jpeglib/JVERSION.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JVERSION.h -------------------------------------------------------------------------------- /jpeglib/JpegLib.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JpegLib.001 -------------------------------------------------------------------------------- /jpeglib/JpegLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JpegLib.dsp -------------------------------------------------------------------------------- /jpeglib/JpegLib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JpegLib.dsw -------------------------------------------------------------------------------- /jpeglib/JpegLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JpegLib.lib -------------------------------------------------------------------------------- /jpeglib/JpegLib.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/JpegLib.plg -------------------------------------------------------------------------------- /jpeglib/Jpegfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Jpegfile.cpp -------------------------------------------------------------------------------- /jpeglib/Jpegfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Jpegfile.h -------------------------------------------------------------------------------- /jpeglib/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MainFrm.cpp -------------------------------------------------------------------------------- /jpeglib/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MainFrm.h -------------------------------------------------------------------------------- /jpeglib/MfcApp.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.001 -------------------------------------------------------------------------------- /jpeglib/MfcApp.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.aps -------------------------------------------------------------------------------- /jpeglib/MfcApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.cpp -------------------------------------------------------------------------------- /jpeglib/MfcApp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.dsp -------------------------------------------------------------------------------- /jpeglib/MfcApp.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.dsw -------------------------------------------------------------------------------- /jpeglib/MfcApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.h -------------------------------------------------------------------------------- /jpeglib/MfcApp.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.opt -------------------------------------------------------------------------------- /jpeglib/MfcApp.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.plg -------------------------------------------------------------------------------- /jpeglib/MfcApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcApp.rc -------------------------------------------------------------------------------- /jpeglib/MfcAppDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcAppDoc.cpp -------------------------------------------------------------------------------- /jpeglib/MfcAppDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcAppDoc.h -------------------------------------------------------------------------------- /jpeglib/MfcAppView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcAppView.cpp -------------------------------------------------------------------------------- /jpeglib/MfcAppView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/MfcAppView.h -------------------------------------------------------------------------------- /jpeglib/Quantdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Quantdlg.cpp -------------------------------------------------------------------------------- /jpeglib/Quantdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Quantdlg.h -------------------------------------------------------------------------------- /jpeglib/Release/Jcapimin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcapimin.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcapistd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcapistd.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jccoefct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jccoefct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jccolor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jccolor.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcdctmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcdctmgr.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jchuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jchuff.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcinit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcinit.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcmainct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcmainct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcmarker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcmarker.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcmaster.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcmaster.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcomapi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcomapi.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcparam.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcparam.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcphuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcphuff.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcprepct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcprepct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jcsample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jcsample.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jctrans.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jctrans.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdapimin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdapimin.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdapistd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdapistd.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdatadst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdatadst.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdatasrc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdatasrc.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdcoefct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdcoefct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdcolor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdcolor.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jddctmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jddctmgr.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdhuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdhuff.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdinput.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdinput.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdmainct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdmainct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdmarker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdmarker.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdmaster.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdmaster.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdmerge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdmerge.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdphuff.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdphuff.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdpostct.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdpostct.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdsample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdsample.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jdtrans.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jdtrans.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jerror.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jfdctflt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jfdctflt.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jfdctfst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jfdctfst.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jfdctint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jfdctint.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jidctflt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jidctflt.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jidctfst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jidctfst.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jidctint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jidctint.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jidctred.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jidctred.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jmemmgr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jmemmgr.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jmemnobs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jmemnobs.obj -------------------------------------------------------------------------------- /jpeglib/Release/JpegLib.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/JpegLib.pch -------------------------------------------------------------------------------- /jpeglib/Release/Jpegtran.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jpegtran.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jquant1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jquant1.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jquant2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jquant2.obj -------------------------------------------------------------------------------- /jpeglib/Release/Jutils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/Jutils.obj -------------------------------------------------------------------------------- /jpeglib/Release/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/Release/vc60.idb -------------------------------------------------------------------------------- /jpeglib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/StdAfx.cpp -------------------------------------------------------------------------------- /jpeglib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/StdAfx.h -------------------------------------------------------------------------------- /jpeglib/aaa.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/aaa.lst -------------------------------------------------------------------------------- /jpeglib/res/MfcApp.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/res/MfcApp.rc2 -------------------------------------------------------------------------------- /jpeglib/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/res/Toolbar.bmp -------------------------------------------------------------------------------- /jpeglib/res/mfcapp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/res/mfcapp.ico -------------------------------------------------------------------------------- /jpeglib/res/mfcapp~1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/res/mfcapp~1.ico -------------------------------------------------------------------------------- /jpeglib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/jpeglib/resource.h -------------------------------------------------------------------------------- /res/Client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/Client.ico -------------------------------------------------------------------------------- /res/Client.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/Client.rc2 -------------------------------------------------------------------------------- /res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bitmap1.bmp -------------------------------------------------------------------------------- /res/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bitmap2.bmp -------------------------------------------------------------------------------- /res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bmp00001.bmp -------------------------------------------------------------------------------- /res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bmp00002.bmp -------------------------------------------------------------------------------- /res/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bmp00003.bmp -------------------------------------------------------------------------------- /res/bmp00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/bmp00004.bmp -------------------------------------------------------------------------------- /res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/icon1.ico -------------------------------------------------------------------------------- /res/光驱.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/光驱.ico -------------------------------------------------------------------------------- /res/文件夹1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/文件夹1.ico -------------------------------------------------------------------------------- /res/文件夹2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/文件夹2.ico -------------------------------------------------------------------------------- /res/硬盘.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/硬盘.ico -------------------------------------------------------------------------------- /res/软驱.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/res/软驱.ico -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiutianshuchangsha/client/HEAD/targetver.h --------------------------------------------------------------------------------