包装 ActiveX 以拦截调用(ActiveX 代理包装器)
我的系统中有一个根深蒂固的 ActiveX 控件,我想了解/修复它!
我正在考虑用一个透明的代理类包装这个 MFC dll,该代理类将拦截成员等。
在 MFC 中如何实现这一点。
谢谢!
I have a deeply ingrained ActiveX control in our system which I would like to learn about / fix!
I am thinking about wrapping this MFC dll with a transparent proxy class that will intercept the member etc.
HOW can this be approached in MFC.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以首先使用 AxImp 生成 ActiveX 包装器,然后使用拦截代码修改生成的包装器。有关手动生成包装器的详细信息,请参阅此问题。
You could start by generating an ActiveX wrapper using AxImp, then modifying the generated wrapper with your intercept code. See this question for details on manually generating the wrapper.