Last change
on this file since 31659 was 31659, checked in by vboxsync, 14 years ago |
export Windows installer to OSE
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
562 bytes
|
Line | |
---|
1 | #define MUST_BE_IMPLEMENTED(s) ::MessageBox(0, s, "Not Implemented", 0); return E_NOTIMPL;
|
---|
2 | #include "OleInPlaceSite.h"
|
---|
3 |
|
---|
4 | OleInPlaceSite::OleInPlaceSite( class IOleInPlaceFrame* ole_in_place_frame,
|
---|
5 | HWND h) :
|
---|
6 | ole_client_site_ (0),
|
---|
7 | ole_in_place_frame_ (ole_in_place_frame),
|
---|
8 | browser_object_ (0),
|
---|
9 | hwnd_(h)
|
---|
10 | {
|
---|
11 | }
|
---|
12 |
|
---|
13 | HRESULT OleInPlaceSite::QueryInterface( REFIID riid, LPVOID FAR* ppvObj)
|
---|
14 | {
|
---|
15 | return ole_client_site_->QueryInterface(riid, ppvObj);
|
---|
16 | }
|
---|
17 |
|
---|
18 | void OleInPlaceSite::BrowserObject(IOleObject* o)
|
---|
19 | {
|
---|
20 | browser_object_ = o;
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.