摘要: //服务端 #include #include #include #define SIZE 4096//缓冲区大小 char pipename[128] = "\\\\.\\Pipe\\cgwpipe";//管道名字 HANDLE m_pipe = NULL;//管道句柄 void start() { //创建管道 m_pipe = CreateNamedPipeA( ... 阅读全文
posted @ 2016-07-16 20:48 喵小喵~ 阅读(250) 评论(0) 推荐(0) 编辑