[][src]Struct winapi::um::oaidl::ICreateTypeInfoVtbl

#[repr(C)]
pub struct ICreateTypeInfoVtbl {
    pub parent: IUnknownVtbl,
    pub SetGuid: unsafe extern "system" fn(This: *mut ICreateTypeInfo, guid: REFGUID) -> HRESULT,
    pub SetTypeFlags: unsafe extern "system" fn(This: *mut ICreateTypeInfo, uTypeFlags: UINT) -> HRESULT,
    pub SetDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pStrDoc: LPOLESTR) -> HRESULT,
    pub SetHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, dwHelpContext: DWORD) -> HRESULT,
    pub SetVersion: unsafe extern "system" fn(This: *mut ICreateTypeInfo, wMajorVerNum: WORD, wMinorVerNum: WORD) -> HRESULT,
    pub AddRefTypeInfo: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pTInfo: *mut ITypeInfo) -> HRESULT,
    pub AddFuncDesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, pFuncDesc: *mut FUNCDESC) -> HRESULT,
    pub SetImplTypeFlags: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, implTypeFlags: INT) -> HRESULT,
    pub SetAlignment: unsafe extern "system" fn(This: *mut ICreateTypeInfo, cbAlignment: WORD) -> HRESULT,
    pub SetSchema: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pStrSchema: LPOLESTR) -> HRESULT,
    pub AddVarDesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, pVarDesc: *mut VARDESC) -> HRESULT,
    pub SetFuncAndParamNames: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, rgszNames: *mut LPOLESTR, cNames: UINT) -> HRESULT,
    pub SetVarName: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szName: LPOLESTR) -> HRESULT,
    pub SetTypeDescAlias: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pTDescAlias: *mut TYPEDESC) -> HRESULT,
    pub DefineFuncAsDllEntry: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDllName: LPOLESTR, szProcName: LPOLESTR) -> HRESULT,
    pub SetFuncDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDocString: LPOLESTR) -> HRESULT,
    pub SetVarDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDocString: LPOLESTR) -> HRESULT,
    pub SetFuncHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, dwHelpContext: DWORD) -> HRESULT,
    pub SetVarHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, dwHelpContext: DWORD) -> HRESULT,
    pub SetMops: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, bstrMops: BSTR) -> HRESULT,
    pub SetTypeIdldesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pIdlDesc: *mut IDLDESC) -> HRESULT,
    pub LayOut: unsafe extern "system" fn(This: *mut ICreateTypeInfo) -> HRESULT,
}

Fields

parent: IUnknownVtblSetGuid: unsafe extern "system" fn(This: *mut ICreateTypeInfo, guid: REFGUID) -> HRESULTSetTypeFlags: unsafe extern "system" fn(This: *mut ICreateTypeInfo, uTypeFlags: UINT) -> HRESULTSetDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pStrDoc: LPOLESTR) -> HRESULTSetHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, dwHelpContext: DWORD) -> HRESULTSetVersion: unsafe extern "system" fn(This: *mut ICreateTypeInfo, wMajorVerNum: WORD, wMinorVerNum: WORD) -> HRESULTAddRefTypeInfo: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pTInfo: *mut ITypeInfo) -> HRESULTAddFuncDesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, pFuncDesc: *mut FUNCDESC) -> HRESULTSetImplTypeFlags: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, implTypeFlags: INT) -> HRESULTSetAlignment: unsafe extern "system" fn(This: *mut ICreateTypeInfo, cbAlignment: WORD) -> HRESULTSetSchema: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pStrSchema: LPOLESTR) -> HRESULTAddVarDesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, pVarDesc: *mut VARDESC) -> HRESULTSetFuncAndParamNames: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, rgszNames: *mut LPOLESTR, cNames: UINT) -> HRESULTSetVarName: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szName: LPOLESTR) -> HRESULTSetTypeDescAlias: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pTDescAlias: *mut TYPEDESC) -> HRESULTDefineFuncAsDllEntry: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDllName: LPOLESTR, szProcName: LPOLESTR) -> HRESULTSetFuncDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDocString: LPOLESTR) -> HRESULTSetVarDocString: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, szDocString: LPOLESTR) -> HRESULTSetFuncHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, dwHelpContext: DWORD) -> HRESULTSetVarHelpContext: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, dwHelpContext: DWORD) -> HRESULTSetMops: unsafe extern "system" fn(This: *mut ICreateTypeInfo, index: UINT, bstrMops: BSTR) -> HRESULTSetTypeIdldesc: unsafe extern "system" fn(This: *mut ICreateTypeInfo, pIdlDesc: *mut IDLDESC) -> HRESULTLayOut: unsafe extern "system" fn(This: *mut ICreateTypeInfo) -> HRESULT

Auto Trait Implementations

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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