本文介绍了使用来自DLL的COM对象没有寄存器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用DLL中的COM对象,而无需在C ++中注册而不是托管代码?
Is it possible to use COM Object from DLL without register in C++ not managed code?
推荐答案
- 您
LoadLibrary
的DLL - 您
GetProcAddress
其DllGetClassObject
- 调用
DllGetClassObject
以获取IClassFactory
指针CLSID
/ li>
- 您可以使用
IClassFactory :: CreateInstance
并实例化coclass
- You
LoadLibrary
the DLL - You
GetProcAddress
itsDllGetClassObject
- You call
DllGetClassObject
to obtainIClassFactory
pointer forCLSID
of interest - You are good to go with
IClassFactory::CreateInstance
and instantiate the coclass
这篇关于使用来自DLL的COM对象没有寄存器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!