谢了!

解决方案 »

  1.   

    可查MSDN(内容太多)
    IUnknown
    IUnknown is the base interface of every other COM interface. IUnknown defines three methods: QueryInterface, AddRef, and Release.QueryInterface allows an interface user to ask the object for a pointer to another of its interfaces.AddRef andRelease implement reference counting on the interface.Introduction to COMSee Also   IUnknown and Interface Inheritance in the Win32 SDK
      

  2.   

    Windows下所有接口的原始祖先,所有接口从它继承而来