From MSDN: The class identifier (CLSID) is CLSID_DirectShowPluginControl, which is defined in the header file uuids.h.
But I can't find the CLSID of this interface. Hope to get some help.
http://directshownet.cvs.sourceforge.net/viewvc/directshownet/directshowlib /src/AXExtend.cs?view=markup
Oh, and the DirectShowPluginControl object is defined in uuids.cs.
Thanks for your help. it is much appreciated.
How could I use the DirectShowPluginControl class?
IAMPluginControl::SetPreferredClsid Adds a CLSID to the preferred list or removes a CLSID from the list.
I want to implement the method. What should I do in C#?
I'm not sure I understand the question. How do you use any method? You create an instance of the class, then call methods against it.
public class DirectShowPluginControl {
}
There is no method of the class. How could I call methods against it?
DirectShowPluginControl dspc = new DirectShowPluginControl(); IAMPluginControl ipc = (IAMPluginControl)dspc;
Log in to post a comment.
From MSDN:
The class identifier (CLSID) is CLSID_DirectShowPluginControl, which is
defined in the header file uuids.h.
But I can't find the CLSID of this interface. Hope to get some help.
http://directshownet.cvs.sourceforge.net/viewvc/directshownet/directshowlib
/src/AXExtend.cs?view=markup
Oh, and the DirectShowPluginControl object is defined in uuids.cs.
Thanks for your help. it is much appreciated.
How could I use the DirectShowPluginControl class?
IAMPluginControl::SetPreferredClsid
Adds a CLSID to the preferred list or removes a CLSID from the list.
I want to implement the method. What should I do in C#?
I'm not sure I understand the question. How do you use any method? You
create an instance of the class, then call methods against it.
public class DirectShowPluginControl
{
}
There is no method of the class. How could I call methods against it?
DirectShowPluginControl dspc = new DirectShowPluginControl();
IAMPluginControl ipc = (IAMPluginControl)dspc;