pub trait IEventSystem_Impl: Sized + IDispatch_Impl {
// Required methods
fn Query(
&self,
progid: &BSTR,
querycriteria: &BSTR,
errorindex: *mut i32,
) -> Result<IUnknown>;
fn Store(&self, progid: &BSTR, pinterface: Option<&IUnknown>) -> Result<()>;
fn Remove(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<i32>;
fn EventObjectChangeEventClassID(&self) -> Result<BSTR>;
fn QueryS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<IUnknown>;
fn RemoveS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<()>;
}
Required Methods§
fn Query( &self, progid: &BSTR, querycriteria: &BSTR, errorindex: *mut i32, ) -> Result<IUnknown>
fn Store(&self, progid: &BSTR, pinterface: Option<&IUnknown>) -> Result<()>
fn Remove(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<i32>
fn EventObjectChangeEventClassID(&self) -> Result<BSTR>
fn QueryS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<IUnknown>
fn RemoveS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<()>
Object Safety§
This trait is not object safe.