Trait windows::Win32::Media::MediaPlayer::IWMPPluginUI_Impl
pub trait IWMPPluginUI_Impl: Sized {
// Required methods
fn SetCore(&self, pcore: Option<&IWMPCore>) -> Result<()>;
fn Create(&self, hwndparent: HWND, phwndwindow: *mut HWND) -> Result<()>;
fn Destroy(&self) -> Result<()>;
fn DisplayPropertyPage(&self, hwndparent: HWND) -> Result<()>;
fn GetProperty(
&self,
pwszname: &PCWSTR,
pvarproperty: *mut VARIANT,
) -> Result<()>;
fn SetProperty(
&self,
pwszname: &PCWSTR,
pvarproperty: *const VARIANT,
) -> Result<()>;
fn TranslateAccelerator(&self, lpmsg: *mut MSG) -> Result<()>;
}
Required Methods§
fn SetCore(&self, pcore: Option<&IWMPCore>) -> Result<()>
fn Create(&self, hwndparent: HWND, phwndwindow: *mut HWND) -> Result<()>
fn Destroy(&self) -> Result<()>
fn DisplayPropertyPage(&self, hwndparent: HWND) -> Result<()>
fn GetProperty( &self, pwszname: &PCWSTR, pvarproperty: *mut VARIANT, ) -> Result<()>
fn SetProperty( &self, pwszname: &PCWSTR, pvarproperty: *const VARIANT, ) -> Result<()>
fn TranslateAccelerator(&self, lpmsg: *mut MSG) -> Result<()>
Object Safety§
This trait is not object safe.