How to get the GIT in Delphi 7? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:03:55Z http://stackoverflow.com/feeds/question/1070571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7 3 How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T18:11:56Z 2009-07-01T21:04:09Z <p>I'm trying to get the Global Interface Table by using the following code (Delphi):</p> <pre><code>uses Comobj, ActiveX; var cGIT : IGlobalInterfaceTable = NIL; const CLSID_StdGlobalInterfaceTable: TGUID = '{00000146-0000-0000-C000-000000000046}'; function GIT : IGlobalInterfaceTable; begin if (cGIT = NIL) then OleCheck (CoCreateInstance (CLSID_StdGlobalInterfaceTable, NIL, CLSCTX_ALL, IGlobalInterfaceTable, cGIT )); Result := cGIT; end; </code></pre> <p>However, CoCreateInstance throws a "Class Not Registered" exception. And indeed: in HKCR/CLSID there is no entry for {00000146- etc. }.</p> <p>Which dll or ocx should be registered, to get this definition in the registry? Or am I doing it totally wrong?</p> http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644 5 Answer by Michael Madsen for How to get the GIT in Delphi 7? Michael Madsen 2009-07-01T18:32:31Z 2009-07-01T18:32:31Z <p>You have defined CLSID_StdGlobalInterfaceTable incorrectly: you have supplied the GUID of the interface rather than a concrete class.</p> <p>I don't have the Windows header files around, so I can't check against them, but a search suggests it should be:</p> <pre><code> CLSID_StdGlobalInterfaceTable: TGUID = '{00000323-0000-0000-C000-000000000046}'; </code></pre> http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070660#1070660 2 Answer by skamradt for How to get the GIT in Delphi 7? skamradt 2009-07-01T18:35:33Z 2009-07-01T18:35:33Z <p>Have you used OleView32 to verify the GUID of the class? That utility is available in the Windows SDK and allows you to walk the registry of interfaces much easier than regedit. I would classify the utility as a must have for any COM development.</p> http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1071393#1071393 7 Answer by Conor Boyd for How to get the GIT in Delphi 7? Conor Boyd 2009-07-01T21:04:09Z 2009-07-01T21:04:09Z <p>Here's my unit that does it. I put this together when I was compiling in D2006, but I don't see why it would be any different in D7. I use it for storing an interface to a DCOM server and sharing it between multiple threads.</p> <pre><code>unit GlobalInterfaceTable; interface uses Types, ActiveX; type IGlobalInterfaceTable = interface(IUnknown) ['{00000146-0000-0000-C000-000000000046}'] function RegisterInterfaceInGlobal (pUnk : IUnknown; const riid: TIID; out dwCookie : DWORD): HResult; stdcall; function RevokeInterfaceFromGlobal (dwCookie: DWORD): HResult; stdcall; function GetInterfaceFromGlobal (dwCookie: DWORD; const riid: TIID; out ppv): HResult; stdcall; end; function GIT: IGlobalInterfaceTable; implementation uses ComObj; const CLSID_StdGlobalInterfaceTable : TGUID = '{00000323-0000-0000-C000-000000000046}'; function GIT: IGlobalInterfaceTable; begin // This function call always returns the singleton instance of the GIT OleCheck(CoCreateInstance (CLSID_StdGlobalInterfaceTable, NIL, CLSCTX_ALL, IGlobalInterfaceTable, Result)); end; end. </code></pre>