CoGetClassObject

[DllImport("ole32.dll", SetLastError = true)]
public static extern int CoGetClassObject(
   ref Guid rclsid,
   uint dwClsContext,
   COSERVERINFO pServerInfo,
   ref Guid riid,
   out IntPtr ppv
);

Microsoft documentation: Link

Last updated