进程通信之一使用WM_COPYDATA
摘要:
进程间通信最简单的方式就是发送WM_COPYDATA消息。发送WM_COPYDATA消息:SendMessage(接收窗口句柄, WM_COPYDATA, (WPARAM)发送窗口句柄, (LPARAM)&CopyData);其中的CopyData为COPYDATASTRUCT结构类型,该结构定义如下:typedef struct tagCOPYDATASTRUCT {DWORD dwData; // Specifies data to be passed to the receiving application. DWORD cbData; //Specifies the size, 阅读全文
posted @ 2011-09-23 15:39 MoreWindows 阅读(13136) 评论(3) 推荐(0) 编辑