Beispiel #1
0
static HRESULT STDMETHODCALLTYPE
inplace_frame_GetWindow(IOleInPlaceFrame* self, HWND* win)
{
    HTML_TRACE("inplace_frame_GetWindow");
    *win = GetAncestor(MC_HTML_FROM_INPLACE_FRAME(self)->win, GA_ROOT);
    return(S_OK);
}
Beispiel #2
0
static HRESULT STDMETHODCALLTYPE
inplace_frame_QueryInterface(IOleInPlaceFrame* self, REFIID riid, void** obj)
{
    return html_QueryInterface(MC_HTML_FROM_INPLACE_FRAME(self), riid, obj);
}
Beispiel #3
0
static ULONG STDMETHODCALLTYPE
inplace_frame_Release(IOleInPlaceFrame* self)
{
    HTML_TRACE("inplace_frame_Release");
    return html_Release(MC_HTML_FROM_INPLACE_FRAME(self));
}