pub trait IPrintCoreHelperUni_Impl: Sized + IPrintCoreHelper_Impl {
    // Required methods
    fn CreateGDLSnapshot(
        &self,
        pdevmode: *mut DEVMODEA,
        cbsize: u32,
        dwflags: u32,
        ppsnapshotstream: *mut Option<IStream>
    ) -> Result<()>;
    fn CreateDefaultGDLSnapshot(&self, dwflags: u32) -> Result<IStream>;
}

Required Methods§

fn CreateGDLSnapshot( &self, pdevmode: *mut DEVMODEA, cbsize: u32, dwflags: u32, ppsnapshotstream: *mut Option<IStream> ) -> Result<()>

fn CreateDefaultGDLSnapshot(&self, dwflags: u32) -> Result<IStream>

Object Safety§

This trait is not object safe.

Implementors§