|
|
I check the wmp.dll and find this interface - IWMPVideoSettingsCtrl in the type library(tlb) as follow:
//////////////////////////////////////////////////////////////////// Dispatch IWMPVideoSettingsCtrl; // IWMPVideoSettingsCtrl: Public interface for skin object model. GUID={07EC23DA-EF73-4BDE-A40F-F269E0B7AFD6}; function QueryInterface(riid:^GUID; out ppvObj:^^void); function AddRef: UI4; function Release: UI4; function GetTypeInfoCount(out pctinfo:^UINT); function GetTypeInfo(itinfo:UINT; lcid:UI4; out pptinfo:^^void); function GetIDsOfNames(riid:^GUID; rgszNames:^^I1; cNames:UINT; lcid:UI4; out rgdispid:^I4); function Invoke(dispidMember:I4; riid:^GUID; lcid:UI4; wFlags:UI2; pdispparams:^DISPPARAMS; out pvarResult:^variant; out pexcepinfo:^EXCEPINFO; out puArgErr:^UINT); property-get brightness: I4; property-put brightness(I4); property-get contrast: I4; property-put contrast(I4); property-get hue: I4; property-put hue(I4); property-get saturation: I4; property-put saturation(I4); function reset; //////////////////////////////////////////////////
But it seem not be ' PUBLIC ' for programmer because i can't Query it from interface IWMPPlayer. Does anyone konw how to use this Interface? Thanks advanced.
|
|
|