I'd like to intercept the COM CoCreateInstanceEx and/or CoGetClassObject functions to replace a class with a testing shim in a unit test. This will only be for a single CLSID; all others can go through unchanged. Is there a way to do this without horrible, evil hacks?
|
|
|||||||||
|
|
|
It depends on what exactly you want. If you want to detect who is loading that class or to find whether it is loaded at all you can use Process Monitor. A call to If you want to replace an existing class with yours - compile a library with your version of class with the same class id and change the path to the COM server inside |
||||||
|
|
|
There's always the But, as you noted, it will be a system-wide replacement of the class, not a local change. Alternatively, you could look into hooking CoCreateInstance as suggested in the post referenced by Shay Erlichmen's comment. |
|||
|
|
