├── .gitattributes ├── .gitignore ├── Client ├── Client.cpp ├── Client.h ├── Client.vcxproj ├── Client.vcxproj.filters └── test.cpp ├── IPC_win.sln ├── Proto.h ├── README.md └── Server ├── Server.cpp ├── Server.h ├── Server.vcxproj ├── Server.vcxproj.filters └── test.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Client/Client.cpp -------------------------------------------------------------------------------- /Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Client/Client.h -------------------------------------------------------------------------------- /Client/Client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Client/Client.vcxproj -------------------------------------------------------------------------------- /Client/Client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Client/Client.vcxproj.filters -------------------------------------------------------------------------------- /Client/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Client/test.cpp -------------------------------------------------------------------------------- /IPC_win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/IPC_win.sln -------------------------------------------------------------------------------- /Proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Proto.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IPC_win 2 | 编译两个项目,先运行server,再运行client 3 | -------------------------------------------------------------------------------- /Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Server/Server.cpp -------------------------------------------------------------------------------- /Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Server/Server.h -------------------------------------------------------------------------------- /Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Server/Server.vcxproj -------------------------------------------------------------------------------- /Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Server/Server.vcxproj.filters -------------------------------------------------------------------------------- /Server/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrsjhhe/IPC_win/HEAD/Server/test.cpp --------------------------------------------------------------------------------