For example, in language X:

let x = CreateOject( "MyProgID" )
x.LateBoundCall()
x.Release()  // (or setting x to Nothing in VB-like language, etc)

What happens to the DLL MyProgID lives in? Does COM unload DLLs automatically?

EDIT

This is assuming that the code above is in an executable that does not expose any COM.

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Yes, but not in a deterministic way. Windows periodically asks every loaded DLL "is it safe to unload you now?" Any DLL that responds "Yes" is unloaded.

Note a remark from MSDN :

If a DLL loaded through a call to CoGetClassObject fails to export DllCanUnloadNow, the DLL will not be unloaded until the application calls the CoUninitialize function to release the OLE libraries.

See this Old New Thing article.

link|improve this answer
1  
DLLs don't call CoUninitialize – wqw Mar 8 '10 at 19:44
@wqw: Wrong. According to MSDN: "To close the COM library gracefully on a thread, each successful call to CoInitialize or CoInitializeEx, including any call that returns S_FALSE, must be balanced by a corresponding call to CoUninitialize." msdn.microsoft.com/en-us/library/ms695279(VS.85).aspx – John Dibling Mar 8 '10 at 19:46
COM Library = the Win32 API library supporting COM runtime != the COM DLL. --- COM Server DLL's typically don't call CoInitialize (nor CoUninitialize) except on threads they create and manage themselves. Also, the typical implementation for DllCanUnloadNow just depends on the number of existing instances. – peterchen Mar 8 '10 at 22:01
@peterchen: Yes, COM server DLLs do call CoInitialize(). At least they should. If the application that uses the COM server DLL doesn't itself use COM, and no other code in the same thread where the DLL was loaded uses COM, then COM won't be initialized. – John Dibling Mar 8 '10 at 22:06
John, I don't consider the typical case "pedantical". COM Server DLL's are normally loaded through CoCreateInstance --> CoGetClassObject --> ... which requires COM libraries to be initialized already. If the DLL only consumes but does not expose COM objects, it's not a COM Server DLL (well, ok, that last one is close to nitpicking) – peterchen Mar 8 '10 at 22:17
show 2 more comments
feedback

you have to manually release the resources used by COM objects. they use a ref counter internally to keep the number of references to the component. if the component still has a refcounter > 0, then the dll will not unload and the resources will not be freed.

link|improve this answer
2  
correct, but doesn't answer the question. – peterchen Mar 8 '10 at 18:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.