pub trait IUrlHistoryStg_Impl: Sized {
    // Required methods
    fn AddUrl(
        &self,
        pocsurl: &PCWSTR,
        pocstitle: &PCWSTR,
        dwflags: u32
    ) -> Result<()>;
    fn DeleteUrl(&self, pocsurl: &PCWSTR, dwflags: u32) -> Result<()>;
    fn QueryUrl(
        &self,
        pocsurl: &PCWSTR,
        dwflags: u32,
        lpstaturl: *mut STATURL
    ) -> Result<()>;
    fn BindToObject(
        &self,
        pocsurl: &PCWSTR,
        riid: *const GUID,
        ppvout: *mut *mut c_void
    ) -> Result<()>;
    fn EnumUrls(&self) -> Result<IEnumSTATURL>;
}

Required Methods§

fn AddUrl( &self, pocsurl: &PCWSTR, pocstitle: &PCWSTR, dwflags: u32 ) -> Result<()>

fn DeleteUrl(&self, pocsurl: &PCWSTR, dwflags: u32) -> Result<()>

fn QueryUrl( &self, pocsurl: &PCWSTR, dwflags: u32, lpstaturl: *mut STATURL ) -> Result<()>

fn BindToObject( &self, pocsurl: &PCWSTR, riid: *const GUID, ppvout: *mut *mut c_void ) -> Result<()>

fn EnumUrls(&self) -> Result<IEnumSTATURL>

Object Safety§

This trait is not object safe.

Implementors§