pub trait IAccountsSettingsPaneInterop_Impl: Sized {
    // Required methods
    fn GetForWindow(
        &self,
        appwindow: HWND,
        riid: *const GUID,
        accountssettingspane: *mut *mut c_void
    ) -> Result<()>;
    fn ShowManageAccountsForWindowAsync(
        &self,
        appwindow: HWND,
        riid: *const GUID,
        asyncaction: *mut *mut c_void
    ) -> Result<()>;
    fn ShowAddAccountForWindowAsync(
        &self,
        appwindow: HWND,
        riid: *const GUID,
        asyncaction: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn GetForWindow( &self, appwindow: HWND, riid: *const GUID, accountssettingspane: *mut *mut c_void ) -> Result<()>

fn ShowManageAccountsForWindowAsync( &self, appwindow: HWND, riid: *const GUID, asyncaction: *mut *mut c_void ) -> Result<()>

fn ShowAddAccountForWindowAsync( &self, appwindow: HWND, riid: *const GUID, asyncaction: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§