我的应用程序如何从另一个应用程序读取 Windows 消息 (WM_SETTEXT)?
除了全局消息挂钩之外,还有其他方法可以拦截来自其他应用程序的窗口消息吗?平台:Windows XP。
Is there a way to intercept window messages from another app other than a global message hook? Platform: Windows XP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调用SetWindowHookEx函数来设置挂钩过程。指定与挂钩过程关联的线程的标识符。 MSDN
You can set a hook procedure by calling SetWindowHookEx function. Specify the identifier of the thread with which the hook procedure is to be associated. MSDN