pub trait ICloneViewHelper_Impl: Sized {
    // Required methods
    fn GetConnectedIDs(
        &self,
        wszadaptorname: &PCWSTR,
        pulcount: *mut u32,
        pulid: *mut u32,
        ulflags: u32
    ) -> Result<()>;
    fn GetActiveTopology(
        &self,
        wszadaptorname: &PCWSTR,
        ulsourceid: u32,
        pulcount: *mut u32,
        pultargetid: *mut u32
    ) -> Result<()>;
    fn SetActiveTopology(
        &self,
        wszadaptorname: &PCWSTR,
        ulsourceid: u32,
        ulcount: u32,
        pultargetid: *const u32
    ) -> Result<()>;
    fn Commit(&self, ffinalcall: BOOL) -> Result<()>;
}

Required Methods§

fn GetConnectedIDs( &self, wszadaptorname: &PCWSTR, pulcount: *mut u32, pulid: *mut u32, ulflags: u32 ) -> Result<()>

fn GetActiveTopology( &self, wszadaptorname: &PCWSTR, ulsourceid: u32, pulcount: *mut u32, pultargetid: *mut u32 ) -> Result<()>

fn SetActiveTopology( &self, wszadaptorname: &PCWSTR, ulsourceid: u32, ulcount: u32, pultargetid: *const u32 ) -> Result<()>

fn Commit(&self, ffinalcall: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§