How to get the GIT in Delphi 7?

后端 未结 3 433
忘掉有多难
忘掉有多难 2021-01-19 17:15

I\'m trying to get the Global Interface Table by using the following code (Delphi):

uses Comobj, ActiveX;

var
   cGIT : IGlobalInterfaceTable = NIL;
const
          


        
3条回答
  •  一生所求
    2021-01-19 18:00

    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.

提交回复
热议问题