[][src]Struct CCODE::ICreateTypeLib2Vtbl

#[repr(C)]pub struct ICreateTypeLib2Vtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> ULONG>,
    pub CreateTypeInfo: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR, tkind: TYPEKIND, ppCTInfo: *mut *mut ICreateTypeInfo) -> HRESULT>,
    pub SetName: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR) -> HRESULT>,
    pub SetVersion: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, wMajorVerNum: WORD, wMinorVerNum: WORD) -> HRESULT>,
    pub SetGuid: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, guid: *const GUID) -> HRESULT>,
    pub SetDocString: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szDoc: LPOLESTR) -> HRESULT>,
    pub SetHelpFileName: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szHelpFileName: LPOLESTR) -> HRESULT>,
    pub SetHelpContext: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, dwHelpContext: DWORD) -> HRESULT>,
    pub SetLcid: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, lcid: LCID) -> HRESULT>,
    pub SetLibFlags: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, uLibFlags: UINT) -> HRESULT>,
    pub SaveAllChanges: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> HRESULT>,
    pub DeleteTypeInfo: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR) -> HRESULT>,
    pub SetCustData: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, guid: *const GUID, pVarVal: *mut VARIANT) -> HRESULT>,
    pub SetHelpStringContext: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, dwHelpStringContext: ULONG) -> HRESULT>,
    pub SetHelpStringDll: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szFileName: LPOLESTR) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> ULONG>CreateTypeInfo: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR, tkind: TYPEKIND, ppCTInfo: *mut *mut ICreateTypeInfo) -> HRESULT>SetName: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR) -> HRESULT>SetVersion: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, wMajorVerNum: WORD, wMinorVerNum: WORD) -> HRESULT>SetGuid: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, guid: *const GUID) -> HRESULT>SetDocString: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szDoc: LPOLESTR) -> HRESULT>SetHelpFileName: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szHelpFileName: LPOLESTR) -> HRESULT>SetHelpContext: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, dwHelpContext: DWORD) -> HRESULT>SetLcid: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, lcid: LCID) -> HRESULT>SetLibFlags: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, uLibFlags: UINT) -> HRESULT>SaveAllChanges: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2) -> HRESULT>DeleteTypeInfo: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szName: LPOLESTR) -> HRESULT>SetCustData: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, guid: *const GUID, pVarVal: *mut VARIANT) -> HRESULT>SetHelpStringContext: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, dwHelpStringContext: ULONG) -> HRESULT>SetHelpStringDll: Option<unsafe extern "C" fn(This: *mut ICreateTypeLib2, szFileName: LPOLESTR) -> HRESULT>

Trait Implementations

impl Clone for ICreateTypeLib2Vtbl[src]

impl Copy for ICreateTypeLib2Vtbl[src]

impl Debug for ICreateTypeLib2Vtbl[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> 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.