[][src]Struct winapi::um::dispex::IDispatchEx

#[repr(C)]
pub struct IDispatchEx { pub lpVtbl: *const IDispatchExVtbl, }

Fields

lpVtbl: *const IDispatchExVtbl

Methods

impl IDispatchEx[src]

pub unsafe fn GetDispID(
    &self,
    bstrName: BSTR,
    grfdex: DWORD,
    pid: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn InvokeEx(
    &self,
    id: DISPID,
    lcid: LCID,
    wFlags: WORD,
    pdp: *mut DISPPARAMS,
    pvarRes: *mut VARIANT,
    pei: *mut EXCEPINFO,
    pspCaller: *mut IServiceProvider
) -> HRESULT
[src]

pub unsafe fn DeleteMemberByName(
    &self,
    bstrName: BSTR,
    grfdex: DWORD
) -> HRESULT
[src]

pub unsafe fn DeleteMemberByDispID(&self, id: DISPID) -> HRESULT[src]

pub unsafe fn GetMemberProperties(
    &self,
    id: DISPID,
    grfdexFetch: DWORD,
    pgrfdex: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn GetMemberName(&self, id: DISPID, pbstrName: *mut BSTR) -> HRESULT[src]

pub unsafe fn GetNextDispID(
    &self,
    grfdex: DWORD,
    id: DISPID,
    pid: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn GetNameSpaceParent(&self, ppunk: *mut *mut IUnknown) -> HRESULT[src]

Methods from Deref<Target = IDispatch>

pub unsafe fn GetTypeInfoCount(&self, pctinfo: *mut UINT) -> HRESULT[src]

pub unsafe fn GetTypeInfo(
    &self,
    iTInfo: UINT,
    lcid: LCID,
    ppTInfo: *mut *mut ITypeInfo
) -> HRESULT
[src]

pub unsafe fn GetIDsOfNames(
    &self,
    riid: REFIID,
    rgszNames: *mut LPOLESTR,
    cNames: UINT,
    lcid: LCID,
    rgDispId: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn Invoke(
    &self,
    dispIdMember: DISPID,
    riid: REFIID,
    lcid: LCID,
    wFlags: WORD,
    pDispParams: *mut DISPPARAMS,
    pVarResult: *mut VARIANT,
    pExcepInfo: *mut EXCEPINFO,
    puArgErr: *mut UINT
) -> HRESULT
[src]

Trait Implementations

impl Interface for IDispatchEx[src]

impl Deref for IDispatchEx[src]

type Target = IDispatch

The resulting type after dereferencing.

Auto Trait Implementations

impl !Send for IDispatchEx

impl !Sync for IDispatchEx

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]