pub trait INewWindowManager_Impl: Sized {
    // Required method
    fn EvaluateNewWindow(
        &self,
        pszurl: &PCWSTR,
        pszname: &PCWSTR,
        pszurlcontext: &PCWSTR,
        pszfeatures: &PCWSTR,
        freplace: BOOL,
        dwflags: u32,
        dwuseractiontime: u32
    ) -> Result<()>;
}

Required Methods§

fn EvaluateNewWindow( &self, pszurl: &PCWSTR, pszname: &PCWSTR, pszurlcontext: &PCWSTR, pszfeatures: &PCWSTR, freplace: BOOL, dwflags: u32, dwuseractiontime: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§