pub trait IWMAddressAccess2_Impl: Sized + IWMAddressAccess_Impl {
    // Required methods
    fn GetAccessEntryEx(
        &self,
        aetype: WM_AETYPE,
        dwentrynum: u32,
        pbstraddress: *mut BSTR,
        pbstrmask: *mut BSTR
    ) -> Result<()>;
    fn AddAccessEntryEx(
        &self,
        aetype: WM_AETYPE,
        bstraddress: &BSTR,
        bstrmask: &BSTR
    ) -> Result<()>;
}

Required Methods§

fn GetAccessEntryEx( &self, aetype: WM_AETYPE, dwentrynum: u32, pbstraddress: *mut BSTR, pbstrmask: *mut BSTR ) -> Result<()>

fn AddAccessEntryEx( &self, aetype: WM_AETYPE, bstraddress: &BSTR, bstrmask: &BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§