pub trait IPrintOemUI2_Impl: Sized + IPrintOemUI_Impl {
    // Required methods
    fn QueryJobAttributes(
        &self,
        hprinter: HANDLE,
        pdevmode: *const DEVMODEA,
        dwlevel: u32,
        lpattributeinfo: *const u8
    ) -> Result<()>;
    fn HideStandardUI(&self, dwmode: u32) -> Result<()>;
    fn DocumentEvent(
        &self,
        hprinter: HANDLE,
        hdc: HDC,
        iesc: i32,
        cbin: u32,
        pvin: *mut c_void,
        cbout: u32,
        pvout: *mut c_void,
        piresult: *mut i32
    ) -> Result<()>;
}

Required Methods§

fn QueryJobAttributes( &self, hprinter: HANDLE, pdevmode: *const DEVMODEA, dwlevel: u32, lpattributeinfo: *const u8 ) -> Result<()>

fn HideStandardUI(&self, dwmode: u32) -> Result<()>

fn DocumentEvent( &self, hprinter: HANDLE, hdc: HDC, iesc: i32, cbin: u32, pvin: *mut c_void, cbout: u32, pvout: *mut c_void, piresult: *mut i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§