├── readme.md └── remoteControl ├── Client └── Client │ ├── .vs │ └── Client │ │ └── v14 │ │ └── .suo │ ├── Client.VC.db │ ├── Client.sln │ ├── Client │ ├── 1.doc │ ├── Client.aps │ ├── Client.cpp │ ├── Client.h │ ├── Client.rc │ ├── Client.vcxproj │ ├── Client.vcxproj.filters │ ├── ClientDlg.cpp │ ├── ClientDlg.h │ ├── Cmd.cpp │ ├── Cmd.h │ ├── FILE.cpp │ ├── FILE.h │ ├── SCREEN.cpp │ ├── SCREEN.h │ ├── aaa1111122121.txt │ ├── protocol.h │ ├── res │ │ ├── Client.ico │ │ └── Client.rc2 │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── zlib1.dll │ ├── Debug │ ├── Client.exe │ └── zlib1.dll │ └── zlib1.dll └── Server └── Server ├── .vs └── Server │ └── v14 │ └── .suo ├── Debug ├── Server.exe └── zlib1.dll ├── Server.VC.db ├── Server.sln ├── Server ├── CMD.cpp ├── CMD.h ├── FILE.cpp ├── FILE.h ├── SCREEN.cpp ├── SCREEN.h ├── Server.cpp ├── Server.vcxproj ├── Server.vcxproj.filters ├── protocol.h └── zlib1.dll └── zlib1.dll /readme.md: -------------------------------------------------------------------------------- 1 | 科锐二阶段项目---远控 2 | 3 | 功能要求: 4 | 1. 远程查看屏幕、控制鼠标 、控制键盘 5 | 2. 远程执行CMD命令并在本机显示结果 6 | 3. 远程查看,上传、下载文件 7 | 4. 不允许使用第三方库 8 | -------------------------------------------------------------------------------- /remoteControl/Client/Client/.vs/Client/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/.vs/Client/v14/.suo -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client.VC.db -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Client", "Client\Client.vcxproj", "{5674FA33-7628-42FB-AD08-38B8F16E43D4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Debug|x64.ActiveCfg = Debug|x64 17 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Debug|x64.Build.0 = Debug|x64 18 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Debug|x86.ActiveCfg = Debug|Win32 19 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Debug|x86.Build.0 = Debug|Win32 20 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Release|x64.ActiveCfg = Release|x64 21 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Release|x64.Build.0 = Release|x64 22 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Release|x86.ActiveCfg = Release|Win32 23 | {5674FA33-7628-42FB-AD08-38B8F16E43D4}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/1.doc -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Client.aps -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Client.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Client.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Client.rc -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {5674FA33-7628-42FB-AD08-38B8F16E43D4} 23 | Client 24 | 8.1 25 | MFCProj 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | MultiByte 33 | Static 34 | 35 | 36 | Application 37 | false 38 | v140 39 | true 40 | Unicode 41 | Static 42 | 43 | 44 | Application 45 | true 46 | v140 47 | Unicode 48 | Static 49 | 50 | 51 | Application 52 | false 53 | v140 54 | true 55 | Unicode 56 | Static 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | true 78 | 79 | 80 | true 81 | 82 | 83 | false 84 | 85 | 86 | false 87 | 88 | 89 | 90 | Use 91 | Level3 92 | Disabled 93 | WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) 94 | true 95 | 96 | 97 | Windows 98 | true 99 | 100 | 101 | false 102 | true 103 | _DEBUG;%(PreprocessorDefinitions) 104 | 105 | 106 | 0x0804 107 | _DEBUG;%(PreprocessorDefinitions) 108 | $(IntDir);%(AdditionalIncludeDirectories) 109 | 110 | 111 | 112 | 113 | Use 114 | Level3 115 | Disabled 116 | _WINDOWS;_DEBUG;%(PreprocessorDefinitions) 117 | true 118 | 119 | 120 | Windows 121 | true 122 | 123 | 124 | false 125 | true 126 | _DEBUG;%(PreprocessorDefinitions) 127 | 128 | 129 | 0x0804 130 | _DEBUG;%(PreprocessorDefinitions) 131 | $(IntDir);%(AdditionalIncludeDirectories) 132 | 133 | 134 | 135 | 136 | Level3 137 | Use 138 | MaxSpeed 139 | true 140 | true 141 | WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) 142 | true 143 | 144 | 145 | Windows 146 | true 147 | true 148 | true 149 | 150 | 151 | false 152 | true 153 | NDEBUG;%(PreprocessorDefinitions) 154 | 155 | 156 | 0x0804 157 | NDEBUG;%(PreprocessorDefinitions) 158 | $(IntDir);%(AdditionalIncludeDirectories) 159 | 160 | 161 | 162 | 163 | Level3 164 | Use 165 | MaxSpeed 166 | true 167 | true 168 | _WINDOWS;NDEBUG;%(PreprocessorDefinitions) 169 | true 170 | 171 | 172 | Windows 173 | true 174 | true 175 | true 176 | 177 | 178 | false 179 | true 180 | NDEBUG;%(PreprocessorDefinitions) 181 | 182 | 183 | 0x0804 184 | NDEBUG;%(PreprocessorDefinitions) 185 | $(IntDir);%(AdditionalIncludeDirectories) 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | Create 210 | Create 211 | Create 212 | Create 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Client.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 头文件 38 | 39 | 40 | 头文件 41 | 42 | 43 | 头文件 44 | 45 | 46 | 头文件 47 | 48 | 49 | 50 | 51 | 源文件 52 | 53 | 54 | 源文件 55 | 56 | 57 | 源文件 58 | 59 | 60 | 源文件 61 | 62 | 63 | 源文件 64 | 65 | 66 | 源文件 67 | 68 | 69 | 70 | 71 | 资源文件 72 | 73 | 74 | 75 | 76 | 资源文件 77 | 78 | 79 | 80 | 81 | 资源文件 82 | 83 | 84 | -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/ClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/ClientDlg.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/ClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/ClientDlg.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Cmd.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/Cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/Cmd.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/FILE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/FILE.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/FILE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/FILE.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/SCREEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/SCREEN.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/SCREEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/SCREEN.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/aaa1111122121.txt: -------------------------------------------------------------------------------- 1 | 2019 -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/protocol.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/res/Client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/res/Client.ico -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/res/Client.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/res/Client.rc2 -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/resource.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/stdafx.cpp -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/stdafx.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/targetver.h -------------------------------------------------------------------------------- /remoteControl/Client/Client/Client/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Client/zlib1.dll -------------------------------------------------------------------------------- /remoteControl/Client/Client/Debug/Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Debug/Client.exe -------------------------------------------------------------------------------- /remoteControl/Client/Client/Debug/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/Debug/zlib1.dll -------------------------------------------------------------------------------- /remoteControl/Client/Client/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Client/Client/zlib1.dll -------------------------------------------------------------------------------- /remoteControl/Server/Server/.vs/Server/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/.vs/Server/v14/.suo -------------------------------------------------------------------------------- /remoteControl/Server/Server/Debug/Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Debug/Server.exe -------------------------------------------------------------------------------- /remoteControl/Server/Server/Debug/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Debug/zlib1.dll -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server.VC.db -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Server", "Server\Server.vcxproj", "{D8598B2A-7119-4321-9564-94F75796D35B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {D8598B2A-7119-4321-9564-94F75796D35B}.Debug|x64.ActiveCfg = Debug|x64 17 | {D8598B2A-7119-4321-9564-94F75796D35B}.Debug|x64.Build.0 = Debug|x64 18 | {D8598B2A-7119-4321-9564-94F75796D35B}.Debug|x86.ActiveCfg = Debug|Win32 19 | {D8598B2A-7119-4321-9564-94F75796D35B}.Debug|x86.Build.0 = Debug|Win32 20 | {D8598B2A-7119-4321-9564-94F75796D35B}.Release|x64.ActiveCfg = Release|x64 21 | {D8598B2A-7119-4321-9564-94F75796D35B}.Release|x64.Build.0 = Release|x64 22 | {D8598B2A-7119-4321-9564-94F75796D35B}.Release|x86.ActiveCfg = Release|Win32 23 | {D8598B2A-7119-4321-9564-94F75796D35B}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/CMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/CMD.cpp -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/CMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/CMD.h -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/FILE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/FILE.cpp -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/FILE.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include "protocol.h" 4 | 5 | class CFILE 6 | { 7 | public: 8 | CFILE(SOCKET s); 9 | ~CFILE(); 10 | 11 | void checkFile(char* path); 12 | void upLoad(int len); 13 | void downLoad(int len); 14 | 15 | private: 16 | SOCKET m_socket; 17 | }; 18 | 19 | -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/SCREEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/SCREEN.cpp -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/SCREEN.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include "protocol.h" 4 | 5 | class CSCREEN 6 | { 7 | public: 8 | CSCREEN(SOCKET s); 9 | ~CSCREEN(); 10 | 11 | PBITMAPINFO CreateBitmapInfoStruct(HWND hwnd, HBITMAP hBmp); 12 | void CreateBMPFile(HWND hwnd, LPTSTR pszFile, PBITMAPINFO pbi, HBITMAP hBMP, HDC hDC); 13 | 14 | int screenSnap(); 15 | 16 | 17 | 18 | private: 19 | SOCKET m_socket; 20 | 21 | }; 22 | 23 | -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/Server.cpp -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/Server.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {D8598B2A-7119-4321-9564-94F75796D35B} 23 | Win32Proj 24 | Server 25 | 8.1 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | MultiByte 33 | 34 | 35 | Application 36 | false 37 | v140 38 | true 39 | Unicode 40 | 41 | 42 | Application 43 | true 44 | v140 45 | Unicode 46 | 47 | 48 | Application 49 | false 50 | v140 51 | true 52 | Unicode 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | true 77 | 78 | 79 | false 80 | 81 | 82 | false 83 | 84 | 85 | 86 | 87 | 88 | Level3 89 | Disabled 90 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 91 | true 92 | 93 | 94 | Console 95 | true 96 | 97 | 98 | 99 | 100 | 101 | 102 | Level3 103 | Disabled 104 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 105 | true 106 | 107 | 108 | Console 109 | true 110 | 111 | 112 | 113 | 114 | Level3 115 | 116 | 117 | MaxSpeed 118 | true 119 | true 120 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 121 | true 122 | 123 | 124 | Console 125 | true 126 | true 127 | true 128 | 129 | 130 | 131 | 132 | Level3 133 | 134 | 135 | MaxSpeed 136 | true 137 | true 138 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 139 | true 140 | 141 | 142 | Console 143 | true 144 | true 145 | true 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | 源文件 23 | 24 | 25 | 源文件 26 | 27 | 28 | 源文件 29 | 30 | 31 | 32 | 33 | 头文件 34 | 35 | 36 | 头文件 37 | 38 | 39 | 头文件 40 | 41 | 42 | 头文件 43 | 44 | 45 | -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/protocol.h -------------------------------------------------------------------------------- /remoteControl/Server/Server/Server/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/Server/zlib1.dll -------------------------------------------------------------------------------- /remoteControl/Server/Server/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoooHaaa/RemoteControl/4d9ae937de2145622da381a7c8e82d20b0a961b8/remoteControl/Server/Server/zlib1.dll --------------------------------------------------------------------------------