Trait IWMPEffects2_Impl
pub trait IWMPEffects2_Impl: IWMPEffects_Impl {
// Required methods
fn SetCore(&self, pplayer: Ref<'_, IWMPCore>) -> Result<()>;
fn Create(&self, hwndparent: HWND) -> Result<()>;
fn Destroy(&self) -> Result<()>;
fn NotifyNewMedia(&self, pmedia: Ref<'_, IWMPMedia>) -> Result<()>;
fn OnWindowMessage(
&self,
msg: u32,
wparam: WPARAM,
lparam: LPARAM,
plresultparam: *mut LRESULT,
) -> Result<()>;
fn RenderWindowed(
&self,
pdata: *mut TimedLevel,
frequiredrender: BOOL,
) -> Result<()>;
}
Required Methods§
fn SetCore(&self, pplayer: Ref<'_, IWMPCore>) -> Result<()>
fn Create(&self, hwndparent: HWND) -> Result<()>
fn Destroy(&self) -> Result<()>
fn NotifyNewMedia(&self, pmedia: Ref<'_, IWMPMedia>) -> Result<()>
fn OnWindowMessage( &self, msg: u32, wparam: WPARAM, lparam: LPARAM, plresultparam: *mut LRESULT, ) -> Result<()>
fn RenderWindowed( &self, pdata: *mut TimedLevel, frequiredrender: BOOL, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.