AfxOleInit 和 OleInitialize 有什么区别?
我什么时候应该使用其中一种而不是另一种? MSDN 未提供任何有用的信息。
When should I use one over the other? MSDN doesn't provide any useful information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 MFC,则应使用
AfxOleInit
变体。这会调用OleInitialize
并创建/安装 MFCIMessageFilter
对象。第二步是 MFC 特定的初始化步骤。如果您不使用 MFC,则只需调用
OleInitialize
If you're using MFC you should use the
AfxOleInit
variant. This calls bothOleInitialize
and creates / installs an MFCIMessageFilter
object. The second step is an MFC specific initialization step.If you're not using MFC then just call
OleInitialize