I am trying to debug some exe in windbg. Now its calling some thirdparty com dll which is exposing DLLGetClassObject function.
DLLGetClassObject signature is
HRESULT __stdcall DllGetClassObject(
__in REFCLSID rclsid,
__in REFIID riid,
__out LPVOID *ppv
);
Looking at stack trace and arguments I can find out the class id and interface id using commands
dt GUID [address]
When I try to search these guids in registry , I am not able to find anything.
Is there something wrong? I should be able to see the com classes and interfaces id in regsitry. Any ideas?