Click here to Skip to main content
Licence 
First Posted 16 Apr 2007
Views 51,429
Bookmarked 51 times

Emulating CoCreateInstance()

By | 16 Apr 2007 | Article
Describes how to use COM objects without registration.

Introduction

A while ago, I wrote a small utility that converts DOT syntax into an image using the WinGraphViz.DLL COM component.

However, it is not very usual to have the user register this component before running the tool, thus I started looking around for a way to use COM components as if they were normal DLLs. The research yielded that there are many techniques to accomplish that:

  1. Registration-Free COM (for XP and above)
  2. Emulating the CoCreateInstance()

To learn more about Registration-Free COM, please check the references at the end of this article.

Emulating CoCreateInstance()

Normally, to create an instance, you would do something like:

hr = CoCreateInstance(CLSID_DOT, NULL, CLSCTX_ALL,
                      IID_IDOT, (LPVOID *)&pIDOT);

This will cause OLE to fetch the associated DLL from the registry and call its DllGetClassObject() method to get a class factory, then from the class factory an instance of your required IID will be created.

For that reason, we may emulate the CoCreateInstance() by the following code:

HRESULT __stdcall MyCoCreateInstance(
  LPCTSTR szDllName,
  IN REFCLSID rclsid,
  IUnknown* pUnkOuter,
  IN REFIID riid,
  OUT LPVOID FAR* ppv)
{
  HRESULT hr = REGDB_E_KEYMISSING;

  HMODULE hDll = ::LoadLibrary(szDllName);
  if (hDll == 0)
    return hr;

  typedef HRESULT (__stdcall *pDllGetClassObject)(IN REFCLSID rclsid, 
                   IN REFIID riid, OUT LPVOID FAR* ppv);

  pDllGetClassObject GetClassObject = 
     (pDllGetClassObject)::GetProcAddress(hDll, "DllGetClassObject");
  if (GetClassObject == 0)
  {
    ::FreeLibrary(hDll);
    return hr;
  }

  IClassFactory *pIFactory;

  hr = GetClassObject(rclsid, IID_IClassFactory, (LPVOID *)&pIFactory);

  if (!SUCCEEDED(hr))
    return hr;

  hr = pIFactory->CreateInstance(pUnkOuter, riid, ppv);
  pIFactory->Release();

  return hr;
}

Notice how this function takes a parameter holding the DLL's name.

Using the code

You need your application to run first if the COM is registered, if not you would resort to emulating the CoCreateInstance(). Your code could look like this:

hr = CoCreateInstance(CLSID_DOT, NULL, CLSCTX_ALL,
     IID_IDOT, (LPVOID *)&pIDOT);

if (hr == REGDB_E_CLASSNOTREG)
{
  hr = MyCoCreateInstance(_T("WinGraphViz.dll"), CLSID_DOT, 
       NULL, IID_IDOT, (LPVOID *)&pIDOT);
}

if (FAILED(hr))
{
  cout << "CoCreateInstance Failed: " << hr 
       << "nn";
  return -1;
}

Reference

The following links were helpful during the building of this simple snippet:

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Elias Bachaalany

Web Developer

Belgium Belgium

Member

Elias (aka lallous) has always been interested in the making of things and their inner workings.
 
His computer interests include system programming, reverse engineering, writing libraries, tutorials and articles.
 
In his free time, and apart from researching, his favorite reading topics include: dreams, metaphysics, philosophy, psychology and any other human/mystical science.
 
He currently works at Hex-Rays and is responsible about many additions in the reputable software reverse engineering tool IDA Pro.
 
- http://lallousx86.wordpress.com/
- http://0xeb.wordpress.com/
- http://www.hexblog.com/

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhat about IDispatch methods? Pinmembermertart2:50 12 Jun '10  
QuestionSingle Instance of COM Servers from different clients PinmemberGurmeetSingh876:00 18 Feb '10  
GeneralCool, Great, Successfully used on Linux!!! PinmemberSharjith5:46 20 Jul '09  
QuestionHow do I get clsid/iid unless the COM dll is not registered Pinmemberehaerim18:50 23 Dec '07  
AnswerRe: How do I get clsid/iid unless the COM dll is not registered PinmemberSharjith6:50 21 Jul '09  
Questionun freed addtional dlls Pinmemberirol4:46 9 Nov '07  
AnswerRe: un freed addtional dlls Pinmemberlallous22:19 11 Nov '07  
GeneralRe: un freed addtional dlls Pinmemberirol23:57 12 Nov '07  
QuestionOCX? Pinmembersammytheblowfish20:28 10 Jul '07  
QuestionRe: OCX? Pinmembersammytheblowfish12:18 14 Jul '07  
AnswerRe: OCX? Pinmembercharlieqin6:54 8 Nov '07  
Can you please post a code snippet for how to use it with ActiveX contrl (ocx)?
 
Thanks!
QuestionFreeLibrary? Pinmemberpestking15:03 17 Apr '07  
AnswerRe: FreeLibrary? Pinmemberlallous18:49 17 Apr '07  
GeneralRe: FreeLibrary? PinmemberPhish Bulb5:27 13 Sep '07  
GeneralRe: FreeLibrary? Pinmemberlallous21:01 20 Sep '07  
GeneralGood stuff Pinmembersprymak23:13 16 Apr '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 17 Apr 2007
Article Copyright 2007 by Elias Bachaalany
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid