windows::Win32::System::Diagnostics::Debug::ActiveScript

Trait IActiveScriptParse64_Impl

pub trait IActiveScriptParse64_Impl: IUnknownImpl {
    // Required methods
    fn InitNew(&self) -> Result<()>;
    fn AddScriptlet(
        &self,
        pstrdefaultname: &PCWSTR,
        pstrcode: &PCWSTR,
        pstritemname: &PCWSTR,
        pstrsubitemname: &PCWSTR,
        pstreventname: &PCWSTR,
        pstrdelimiter: &PCWSTR,
        dwsourcecontextcookie: u64,
        ulstartinglinenumber: u32,
        dwflags: u32,
        pbstrname: *mut BSTR,
        pexcepinfo: *mut EXCEPINFO,
    ) -> Result<()>;
    fn ParseScriptText(
        &self,
        pstrcode: &PCWSTR,
        pstritemname: &PCWSTR,
        punkcontext: Ref<'_, IUnknown>,
        pstrdelimiter: &PCWSTR,
        dwsourcecontextcookie: u64,
        ulstartinglinenumber: u32,
        dwflags: u32,
        pvarresult: *mut VARIANT,
        pexcepinfo: *mut EXCEPINFO,
    ) -> Result<()>;
}

Required Methods§

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

fn AddScriptlet( &self, pstrdefaultname: &PCWSTR, pstrcode: &PCWSTR, pstritemname: &PCWSTR, pstrsubitemname: &PCWSTR, pstreventname: &PCWSTR, pstrdelimiter: &PCWSTR, dwsourcecontextcookie: u64, ulstartinglinenumber: u32, dwflags: u32, pbstrname: *mut BSTR, pexcepinfo: *mut EXCEPINFO, ) -> Result<()>

fn ParseScriptText( &self, pstrcode: &PCWSTR, pstritemname: &PCWSTR, punkcontext: Ref<'_, IUnknown>, pstrdelimiter: &PCWSTR, dwsourcecontextcookie: u64, ulstartinglinenumber: u32, dwflags: u32, pvarresult: *mut VARIANT, pexcepinfo: *mut EXCEPINFO, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§