pub trait IActiveScriptParseProcedureOld32_Impl: Sized {
    // Required method
    fn ParseProcedureText(
        &self,
        pstrcode: &PCWSTR,
        pstrformalparams: &PCWSTR,
        pstritemname: &PCWSTR,
        punkcontext: Option<&IUnknown>,
        pstrdelimiter: &PCWSTR,
        dwsourcecontextcookie: u32,
        ulstartinglinenumber: u32,
        dwflags: u32,
    ) -> Result<IDispatch>;
}

Required Methods§

fn ParseProcedureText( &self, pstrcode: &PCWSTR, pstrformalparams: &PCWSTR, pstritemname: &PCWSTR, punkcontext: Option<&IUnknown>, pstrdelimiter: &PCWSTR, dwsourcecontextcookie: u32, ulstartinglinenumber: u32, dwflags: u32, ) -> Result<IDispatch>

Object Safety§

This trait is not object safe.

Implementors§