pub trait IDvdGraphBuilder_Impl: Sized {
    // Required methods
    fn GetFiltergraph(&self) -> Result<IGraphBuilder>;
    fn GetDvdInterface(
        &self,
        riid: *const GUID,
        ppvif: *mut *mut c_void
    ) -> Result<()>;
    fn RenderDvdVideoVolume(
        &self,
        lpcwszpathname: &PCWSTR,
        dwflags: u32,
        pstatus: *mut AM_DVD_RENDERSTATUS
    ) -> Result<()>;
}

Required Methods§

fn GetFiltergraph(&self) -> Result<IGraphBuilder>

fn GetDvdInterface( &self, riid: *const GUID, ppvif: *mut *mut c_void ) -> Result<()>

fn RenderDvdVideoVolume( &self, lpcwszpathname: &PCWSTR, dwflags: u32, pstatus: *mut AM_DVD_RENDERSTATUS ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§