pub trait IWiaUIExtension_Impl: Sized {
    // Required methods
    fn DeviceDialog(
        &self,
        pdevicedialogdata: *const DEVICEDIALOGDATA
    ) -> Result<()>;
    fn GetDeviceIcon(
        &self,
        bstrdeviceid: &BSTR,
        phicon: *mut HICON,
        nsize: u32
    ) -> Result<()>;
    fn GetDeviceBitmapLogo(
        &self,
        bstrdeviceid: &BSTR,
        phbitmap: *mut HBITMAP,
        nmaxwidth: u32,
        nmaxheight: u32
    ) -> Result<()>;
}

Required Methods§

fn DeviceDialog(&self, pdevicedialogdata: *const DEVICEDIALOGDATA) -> Result<()>

fn GetDeviceIcon( &self, bstrdeviceid: &BSTR, phicon: *mut HICON, nsize: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§