pub trait IUrlHistoryStg2_Impl: Sized + IUrlHistoryStg_Impl {
    // Required methods
    fn AddUrlAndNotify(
        &self,
        pocsurl: &PCWSTR,
        pocstitle: &PCWSTR,
        dwflags: u32,
        fwritehistory: BOOL,
        poctnotify: Option<&IOleCommandTarget>,
        punkisfolder: Option<&IUnknown>
    ) -> Result<()>;
    fn ClearHistory(&self) -> Result<()>;
}

Required Methods§

fn AddUrlAndNotify( &self, pocsurl: &PCWSTR, pocstitle: &PCWSTR, dwflags: u32, fwritehistory: BOOL, poctnotify: Option<&IOleCommandTarget>, punkisfolder: Option<&IUnknown> ) -> Result<()>

fn ClearHistory(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§