pub trait IHandlerActivationHost_Impl: Sized {
    // Required methods
    fn BeforeCoCreateInstance(
        &self,
        clsidhandler: *const GUID,
        itemsbeingactivated: Option<&IShellItemArray>,
        handlerinfo: Option<&IHandlerInfo>
    ) -> Result<()>;
    fn BeforeCreateProcess(
        &self,
        applicationpath: &PCWSTR,
        commandline: &PCWSTR,
        handlerinfo: Option<&IHandlerInfo>
    ) -> Result<()>;
}

Required Methods§

fn BeforeCoCreateInstance( &self, clsidhandler: *const GUID, itemsbeingactivated: Option<&IShellItemArray>, handlerinfo: Option<&IHandlerInfo> ) -> Result<()>

fn BeforeCreateProcess( &self, applicationpath: &PCWSTR, commandline: &PCWSTR, handlerinfo: Option<&IHandlerInfo> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§