[][src]Struct CCODE::ITypeLib2Vtbl

#[repr(C)]pub struct ITypeLib2Vtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeLib2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> ULONG>,
    pub GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> UINT>,
    pub GetTypeInfo: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: UINT, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>,
    pub GetTypeInfoType: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: UINT, pTKind: *mut TYPEKIND) -> HRESULT>,
    pub GetTypeInfoOfGuid: Option<unsafe extern "C" fn(This: *mut ITypeLib2, guid: *const GUID, ppTinfo: *mut *mut ITypeInfo) -> HRESULT>,
    pub GetLibAttr: Option<unsafe extern "C" fn(This: *mut ITypeLib2, ppTLibAttr: *mut *mut TLIBATTR) -> HRESULT>,
    pub GetTypeComp: Option<unsafe extern "C" fn(This: *mut ITypeLib2, ppTComp: *mut *mut ITypeComp) -> HRESULT>,
    pub GetDocumentation: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: INT, pBstrName: *mut BSTR, pBstrDocString: *mut BSTR, pdwHelpContext: *mut DWORD, pBstrHelpFile: *mut BSTR) -> HRESULT>,
    pub IsName: Option<unsafe extern "C" fn(This: *mut ITypeLib2, szNameBuf: LPOLESTR, lHashVal: ULONG, pfName: *mut BOOL) -> HRESULT>,
    pub FindName: Option<unsafe extern "C" fn(This: *mut ITypeLib2, szNameBuf: LPOLESTR, lHashVal: ULONG, ppTInfo: *mut *mut ITypeInfo, rgMemId: *mut MEMBERID, pcFound: *mut USHORT) -> HRESULT>,
    pub ReleaseTLibAttr: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pTLibAttr: *mut TLIBATTR)>,
    pub GetCustData: Option<unsafe extern "C" fn(This: *mut ITypeLib2, guid: *const GUID, pVarVal: *mut VARIANT) -> HRESULT>,
    pub GetLibStatistics: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pcUniqueNames: *mut ULONG, pcchUniqueNames: *mut ULONG) -> HRESULT>,
    pub GetDocumentation2: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: INT, lcid: LCID, pbstrHelpString: *mut BSTR, pdwHelpStringContext: *mut DWORD, pbstrHelpStringDll: *mut BSTR) -> HRESULT>,
    pub GetAllCustData: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pCustData: *mut CUSTDATA) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut ITypeLib2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> ULONG>GetTypeInfoCount: Option<unsafe extern "C" fn(This: *mut ITypeLib2) -> UINT>GetTypeInfo: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: UINT, ppTInfo: *mut *mut ITypeInfo) -> HRESULT>GetTypeInfoType: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: UINT, pTKind: *mut TYPEKIND) -> HRESULT>GetTypeInfoOfGuid: Option<unsafe extern "C" fn(This: *mut ITypeLib2, guid: *const GUID, ppTinfo: *mut *mut ITypeInfo) -> HRESULT>GetLibAttr: Option<unsafe extern "C" fn(This: *mut ITypeLib2, ppTLibAttr: *mut *mut TLIBATTR) -> HRESULT>GetTypeComp: Option<unsafe extern "C" fn(This: *mut ITypeLib2, ppTComp: *mut *mut ITypeComp) -> HRESULT>GetDocumentation: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: INT, pBstrName: *mut BSTR, pBstrDocString: *mut BSTR, pdwHelpContext: *mut DWORD, pBstrHelpFile: *mut BSTR) -> HRESULT>IsName: Option<unsafe extern "C" fn(This: *mut ITypeLib2, szNameBuf: LPOLESTR, lHashVal: ULONG, pfName: *mut BOOL) -> HRESULT>FindName: Option<unsafe extern "C" fn(This: *mut ITypeLib2, szNameBuf: LPOLESTR, lHashVal: ULONG, ppTInfo: *mut *mut ITypeInfo, rgMemId: *mut MEMBERID, pcFound: *mut USHORT) -> HRESULT>ReleaseTLibAttr: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pTLibAttr: *mut TLIBATTR)>GetCustData: Option<unsafe extern "C" fn(This: *mut ITypeLib2, guid: *const GUID, pVarVal: *mut VARIANT) -> HRESULT>GetLibStatistics: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pcUniqueNames: *mut ULONG, pcchUniqueNames: *mut ULONG) -> HRESULT>GetDocumentation2: Option<unsafe extern "C" fn(This: *mut ITypeLib2, index: INT, lcid: LCID, pbstrHelpString: *mut BSTR, pdwHelpStringContext: *mut DWORD, pbstrHelpStringDll: *mut BSTR) -> HRESULT>GetAllCustData: Option<unsafe extern "C" fn(This: *mut ITypeLib2, pCustData: *mut CUSTDATA) -> HRESULT>

Trait Implementations

impl Clone for ITypeLib2Vtbl[src]

impl Copy for ITypeLib2Vtbl[src]

impl Debug for ITypeLib2Vtbl[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.