pub trait IHlinkTarget_Impl: Sized {
    // Required methods
    fn SetBrowseContext(
        &self,
        pihlbc: Option<&IHlinkBrowseContext>
    ) -> Result<()>;
    fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>;
    fn Navigate(&self, grfhlnf: u32, pwzjumplocation: &PCWSTR) -> Result<()>;
    fn GetMoniker(
        &self,
        pwzlocation: &PCWSTR,
        dwassign: u32
    ) -> Result<IMoniker>;
    fn GetFriendlyName(&self, pwzlocation: &PCWSTR) -> Result<PWSTR>;
}

Required Methods§

fn SetBrowseContext(&self, pihlbc: Option<&IHlinkBrowseContext>) -> Result<()>

fn GetBrowseContext(&self) -> Result<IHlinkBrowseContext>

fn Navigate(&self, grfhlnf: u32, pwzjumplocation: &PCWSTR) -> Result<()>

fn GetMoniker(&self, pwzlocation: &PCWSTR, dwassign: u32) -> Result<IMoniker>

fn GetFriendlyName(&self, pwzlocation: &PCWSTR) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§