[][src]Struct CCODE::IOleInPlaceFrameVtbl

#[repr(C)]pub struct IOleInPlaceFrameVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame) -> ULONG>,
    pub GetWindow: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, phwnd: *mut HWND) -> HRESULT>,
    pub ContextSensitiveHelp: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, fEnterMode: BOOL) -> HRESULT>,
    pub GetBorder: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, lprectBorder: LPRECT) -> HRESULT>,
    pub RequestBorderSpace: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pborderwidths: LPCBORDERWIDTHS) -> HRESULT>,
    pub SetBorderSpace: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pborderwidths: LPCBORDERWIDTHS) -> HRESULT>,
    pub SetActiveObject: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pActiveObject: *mut IOleInPlaceActiveObject, pszObjName: LPCOLESTR) -> HRESULT>,
    pub InsertMenus: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU, lpMenuWidths: LPOLEMENUGROUPWIDTHS) -> HRESULT>,
    pub SetMenu: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU, holemenu: HOLEMENU, hwndActiveObject: HWND) -> HRESULT>,
    pub RemoveMenus: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU) -> HRESULT>,
    pub SetStatusText: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pszStatusText: LPCOLESTR) -> HRESULT>,
    pub EnableModeless: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, fEnable: BOOL) -> HRESULT>,
    pub TranslateAcceleratorA: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, lpmsg: LPMSG, wID: WORD) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame) -> ULONG>GetWindow: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, phwnd: *mut HWND) -> HRESULT>ContextSensitiveHelp: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, fEnterMode: BOOL) -> HRESULT>GetBorder: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, lprectBorder: LPRECT) -> HRESULT>RequestBorderSpace: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pborderwidths: LPCBORDERWIDTHS) -> HRESULT>SetBorderSpace: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pborderwidths: LPCBORDERWIDTHS) -> HRESULT>SetActiveObject: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pActiveObject: *mut IOleInPlaceActiveObject, pszObjName: LPCOLESTR) -> HRESULT>InsertMenus: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU, lpMenuWidths: LPOLEMENUGROUPWIDTHS) -> HRESULT>SetMenu: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU, holemenu: HOLEMENU, hwndActiveObject: HWND) -> HRESULT>RemoveMenus: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, hmenuShared: HMENU) -> HRESULT>SetStatusText: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, pszStatusText: LPCOLESTR) -> HRESULT>EnableModeless: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, fEnable: BOOL) -> HRESULT>TranslateAcceleratorA: Option<unsafe extern "C" fn(This: *mut IOleInPlaceFrame, lpmsg: LPMSG, wID: WORD) -> HRESULT>

Trait Implementations

impl Clone for IOleInPlaceFrameVtbl[src]

impl Copy for IOleInPlaceFrameVtbl[src]

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