Both:
- CLSID
- IID
Having specified the above, and using:
- CoCreateInstance()
- ATL
- MFC
- Just plain C++
Afterwards, I use CreateInstance()
I'm having trouble, using CreateInstance() - with the last parameter - ppv
Using oleview, I can see methods of the specified IIDabove IID above, such as:
interface IS8Simulation : IDispatch {
HRESULT Open([in] BSTR FileName);
};
How can I then access the above? Examples/guidance - please
Regards