[][src]Struct CCODE::IViewObject2Vtbl

#[repr(C)]pub struct IViewObject2Vtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IViewObject2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IViewObject2) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IViewObject2) -> ULONG>,
    pub Draw: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, ptd: *mut DVTARGETDEVICE, hdcTargetDev: HDC, hdcDraw: HDC, lprcBounds: LPCRECTL, lprcWBounds: LPCRECTL, pfnContinue: Option<unsafe extern "C" fn(dwContinue: ULONG_PTR) -> BOOL>, dwContinue: ULONG_PTR) -> HRESULT>,
    pub GetColorSet: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, ptd: *mut DVTARGETDEVICE, hicTargetDev: HDC, ppColorSet: *mut *mut LOGPALETTE) -> HRESULT>,
    pub Freeze: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, pdwFreeze: *mut DWORD) -> HRESULT>,
    pub Unfreeze: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwFreeze: DWORD) -> HRESULT>,
    pub SetAdvise: Option<unsafe extern "C" fn(This: *mut IViewObject2, aspects: DWORD, advf: DWORD, pAdvSink: *mut IAdviseSink) -> HRESULT>,
    pub GetAdvise: Option<unsafe extern "C" fn(This: *mut IViewObject2, pAspects: *mut DWORD, pAdvf: *mut DWORD, ppAdvSink: *mut *mut IAdviseSink) -> HRESULT>,
    pub GetExtent: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, ptd: *mut DVTARGETDEVICE, lpsizel: LPSIZEL) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IViewObject2, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IViewObject2) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IViewObject2) -> ULONG>Draw: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, ptd: *mut DVTARGETDEVICE, hdcTargetDev: HDC, hdcDraw: HDC, lprcBounds: LPCRECTL, lprcWBounds: LPCRECTL, pfnContinue: Option<unsafe extern "C" fn(dwContinue: ULONG_PTR) -> BOOL>, dwContinue: ULONG_PTR) -> HRESULT>GetColorSet: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, ptd: *mut DVTARGETDEVICE, hicTargetDev: HDC, ppColorSet: *mut *mut LOGPALETTE) -> HRESULT>Freeze: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, pvAspect: *mut c_void, pdwFreeze: *mut DWORD) -> HRESULT>Unfreeze: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwFreeze: DWORD) -> HRESULT>SetAdvise: Option<unsafe extern "C" fn(This: *mut IViewObject2, aspects: DWORD, advf: DWORD, pAdvSink: *mut IAdviseSink) -> HRESULT>GetAdvise: Option<unsafe extern "C" fn(This: *mut IViewObject2, pAspects: *mut DWORD, pAdvf: *mut DWORD, ppAdvSink: *mut *mut IAdviseSink) -> HRESULT>GetExtent: Option<unsafe extern "C" fn(This: *mut IViewObject2, dwDrawAspect: DWORD, lindex: LONG, ptd: *mut DVTARGETDEVICE, lpsizel: LPSIZEL) -> HRESULT>

Trait Implementations

impl Clone for IViewObject2Vtbl[src]

impl Copy for IViewObject2Vtbl[src]

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