pub trait IPhotoAcquireDeviceSelectionDialog_Impl: Sized {
    // Required methods
    fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>;
    fn SetSubmitButtonText(&self, pszsubmitbuttontext: &PCWSTR) -> Result<()>;
    fn DoModal(
        &self,
        hwndparent: HWND,
        dwdeviceflags: u32,
        pbstrdeviceid: *mut BSTR,
        pndevicetype: *mut DEVICE_SELECTION_DEVICE_TYPE
    ) -> Result<()>;
}

Required Methods§

fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>

fn SetSubmitButtonText(&self, pszsubmitbuttontext: &PCWSTR) -> Result<()>

fn DoModal( &self, hwndparent: HWND, dwdeviceflags: u32, pbstrdeviceid: *mut BSTR, pndevicetype: *mut DEVICE_SELECTION_DEVICE_TYPE ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§