pub trait ICommonQuery_Impl: Sized {
    // Required method
    fn OpenQueryWindow(
        &self,
        hwndparent: HWND,
        pquerywnd: *mut OPENQUERYWINDOW,
        ppdataobject: *mut Option<IDataObject>
    ) -> Result<()>;
}

Required Methods§

fn OpenQueryWindow( &self, hwndparent: HWND, pquerywnd: *mut OPENQUERYWINDOW, ppdataobject: *mut Option<IDataObject> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§