pub trait ISharedPropertyGroupManager_Impl: Sized + IDispatch_Impl {
// Required methods
fn CreatePropertyGroup(
&self,
name: &BSTR,
dwisomode: *mut i32,
dwrelmode: *mut i32,
fexists: *mut VARIANT_BOOL,
ppgroup: *mut Option<ISharedPropertyGroup>,
) -> Result<()>;
fn get_Group(&self, name: &BSTR) -> Result<ISharedPropertyGroup>;
fn _NewEnum(&self) -> Result<IUnknown>;
}
Required Methods§
fn CreatePropertyGroup( &self, name: &BSTR, dwisomode: *mut i32, dwrelmode: *mut i32, fexists: *mut VARIANT_BOOL, ppgroup: *mut Option<ISharedPropertyGroup>, ) -> Result<()>
fn get_Group(&self, name: &BSTR) -> Result<ISharedPropertyGroup>
fn _NewEnum(&self) -> Result<IUnknown>
Object Safety§
This trait is not object safe.