-
Notifications
You must be signed in to change notification settings - Fork 20
/
toleinplaceframe.cpp
69 lines (57 loc) · 1.42 KB
/
toleinplaceframe.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "toleinplaceframe.h"
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::GetWindow(HWND *phwnd)
{
return E_FAIL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::ContextSensitiveHelp(
BOOL fEnterMode)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::GetBorder(LPRECT lprectBorder)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::RequestBorderSpace(
LPCBORDERWIDTHS pborderwidths)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::SetBorderSpace(
LPCBORDERWIDTHS pborderwidths)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::SetActiveObject(
IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::InsertMenus(HMENU hmenuShared,
LPOLEMENUGROUPWIDTHS lpMenuWidths)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::SetMenu(HMENU hmenuShared,
HOLEMENU holemenu, HWND hwndActiveObject)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::RemoveMenus(HMENU hmenuShared)
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::SetStatusText(
LPCOLESTR pszStatusText)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::EnableModeless(BOOL fEnable)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE TOleInPlaceFrame::TranslateAccelerator(LPMSG lpmsg,
WORD wID)
{
return E_NOTIMPL;
}