Trait windows::Win32::Media::MediaPlayer::IWMPPlugin_Impl
pub trait IWMPPlugin_Impl: Sized {
// Required methods
fn Init(&self, dwplaybackcontext: usize) -> Result<()>;
fn Shutdown(&self) -> Result<()>;
fn GetID(&self, pguid: *mut GUID) -> Result<()>;
fn GetCaps(&self, pdwflags: *mut u32) -> Result<()>;
fn AdviseWMPServices(
&self,
pwmpservices: Option<&IWMPServices>,
) -> Result<()>;
fn UnAdviseWMPServices(&self) -> Result<()>;
}
Required Methods§
fn Init(&self, dwplaybackcontext: usize) -> Result<()>
fn Shutdown(&self) -> Result<()>
fn GetID(&self, pguid: *mut GUID) -> Result<()>
fn GetCaps(&self, pdwflags: *mut u32) -> Result<()>
fn AdviseWMPServices(&self, pwmpservices: Option<&IWMPServices>) -> Result<()>
fn UnAdviseWMPServices(&self) -> Result<()>
Object Safety§
This trait is not object safe.