pub trait IAuthenticateEx_Impl: Sized + IAuthenticate_Impl {
    // Required method
    fn AuthenticateEx(
        &self,
        phwnd: *mut HWND,
        pszusername: *mut PWSTR,
        pszpassword: *mut PWSTR,
        pauthinfo: *const AUTHENTICATEINFO
    ) -> Result<()>;
}

Required Methods§

fn AuthenticateEx( &self, phwnd: *mut HWND, pszusername: *mut PWSTR, pszpassword: *mut PWSTR, pauthinfo: *const AUTHENTICATEINFO ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§