├── .gitattributes ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── PrivateChat.sln ├── PrivateChatClient ├── CInputDialog.cpp ├── CInputDialog.h ├── PrivateChatClient.aps ├── PrivateChatClient.cpp ├── PrivateChatClient.h ├── PrivateChatClient.rc ├── PrivateChatClient.vcxproj ├── PrivateChatClient.vcxproj.filters ├── PrivateChatClient.vcxproj.user ├── PrivateChatClientDlg.cpp ├── PrivateChatClientDlg.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ ├── PrivateChatClient.ico │ └── PrivateChatClient.rc2 ├── resource.h └── targetver.h ├── PrivateChatServer ├── PrivateChatServer.cpp ├── PrivateChatServer.vcxproj ├── PrivateChatServer.vcxproj.filters └── PrivateChatServer.vcxproj.user └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PrivateChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChat.sln -------------------------------------------------------------------------------- /PrivateChatClient/CInputDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/CInputDialog.cpp -------------------------------------------------------------------------------- /PrivateChatClient/CInputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/CInputDialog.h -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.aps -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.cpp -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.h -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.rc -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.vcxproj -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.vcxproj.filters -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClient.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClient.vcxproj.user -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClientDlg.cpp -------------------------------------------------------------------------------- /PrivateChatClient/PrivateChatClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/PrivateChatClientDlg.h -------------------------------------------------------------------------------- /PrivateChatClient/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/framework.h -------------------------------------------------------------------------------- /PrivateChatClient/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/pch.cpp -------------------------------------------------------------------------------- /PrivateChatClient/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/pch.h -------------------------------------------------------------------------------- /PrivateChatClient/res/PrivateChatClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/res/PrivateChatClient.ico -------------------------------------------------------------------------------- /PrivateChatClient/res/PrivateChatClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/res/PrivateChatClient.rc2 -------------------------------------------------------------------------------- /PrivateChatClient/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/resource.h -------------------------------------------------------------------------------- /PrivateChatClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatClient/targetver.h -------------------------------------------------------------------------------- /PrivateChatServer/PrivateChatServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatServer/PrivateChatServer.cpp -------------------------------------------------------------------------------- /PrivateChatServer/PrivateChatServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatServer/PrivateChatServer.vcxproj -------------------------------------------------------------------------------- /PrivateChatServer/PrivateChatServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatServer/PrivateChatServer.vcxproj.filters -------------------------------------------------------------------------------- /PrivateChatServer/PrivateChatServer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/PrivateChatServer/PrivateChatServer.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love-code-yeyixiao/PrivateChat/HEAD/README.md --------------------------------------------------------------------------------