从 SendMessage() 获取响应 + WM_复制数据
目前我正在研究一个使用 WM_COPYDATA 将用户数据发送到其他进程的示例。我构造 COPYDATASTRUCT 结构来填充用户数据。并使用SendMessage()函数将数据发送到其他进程。 OnCopy() 函数返回真/假值。但想要得到除真/假之外的其他值(如 int、char[]、float 等)。
响应
请帮助我从其他进程获得除了真/假之外的
Currently I am working on a sample which sends user data to the other process using WM_COPYDATA. I construct the COPYDATASTRUCT structure to fill the user data. And send the data to other process using SendMessage() function. The OnCopy() function returns true/ false value. But want to get other than the true/false(Like int, char[], float, etc).
Please help me to getting the response from the other process other than true/false
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您好,您可以使用包含返回数据的 COPYDATASTRUCT 结构通过 SendMessage 进行发送响应。您无法更改 SendMessage 返回类型。
Hi all you can to do its send response by SendMessage with COPYDATASTRUCT struct which consist your return data. You cant change SendMessage return type.