Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6366a1b0
Commit
6366a1b0
authored
Nov 11, 2006
by
Andrey Turkin
Committed by
Alexandre Julliard
Nov 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Host component implementation: IOleContainer.
parent
7c5f011c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
4 deletions
+58
-4
atl_ax.c
dlls/atl/atl_ax.c
+58
-4
No files found.
dlls/atl/atl_ax.c
View file @
6366a1b0
...
...
@@ -43,6 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(atl);
typedef
struct
IOCS
{
const
IOleClientSiteVtbl
*
lpOleClientSiteVtbl
;
const
IOleContainerVtbl
*
lpOleContainerVtbl
;
LONG
ref
;
HWND
hWnd
;
...
...
@@ -71,13 +72,13 @@ static LRESULT CALLBACK AtlAxWin_wndproc( HWND hWnd, UINT wMsg, WPARAM wParam, L
/***********************************************************************
* AtlAxWinInit [ATL.@]
* Initializes the control-hosting code: registering the AtlAxWin,
* Initializes the control-hosting code: registering the AtlAxWin,
* AtlAxWin7 and AtlAxWinLic7 window classes and some messages.
*
* RETURNS
* TRUE or FALSE
*/
BOOL
WINAPI
AtlAxWinInit
(
void
)
{
WNDCLASSEXW
wcex
;
...
...
@@ -122,6 +123,7 @@ static ULONG WINAPI IOCS_AddRef(IOCS *This)
}
#define THIS2IOLECLIENTSITE(This) ((IOleClientSite*)&This->lpOleClientSiteVtbl)
#define THIS2IOLECONTAINER(This) ((IOleContainer*)&This->lpOleContainerVtbl)
static
HRESULT
WINAPI
IOCS_QueryInterface
(
IOCS
*
This
,
REFIID
riid
,
void
**
ppv
)
{
...
...
@@ -131,6 +133,9 @@ static HRESULT WINAPI IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv)
||
IsEqualIID
(
&
IID_IOleClientSite
,
riid
)
)
{
*
ppv
=
THIS2IOLECLIENTSITE
(
This
);
}
else
if
(
IsEqualIID
(
&
IID_IOleContainer
,
riid
)
)
{
*
ppv
=
THIS2IOLECONTAINER
(
This
);
}
if
(
*
ppv
)
...
...
@@ -162,6 +167,7 @@ static ULONG WINAPI IOCS_Release(IOCS *This)
#define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
/****** IOleClientSite *****/
#undef IFACE2THIS
#define IFACE2THIS(iface) DEFINE_THIS(IOCS,OleClientSite, iface)
static
HRESULT
WINAPI
OleClientSite_QueryInterface
(
IOleClientSite
*
iface
,
REFIID
riid
,
void
**
ppv
)
...
...
@@ -195,8 +201,8 @@ static HRESULT WINAPI OleClientSite_GetMoniker(IOleClientSite *iface, DWORD dwAs
static
HRESULT
WINAPI
OleClientSite_GetContainer
(
IOleClientSite
*
iface
,
IOleContainer
**
ppContainer
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
FIXM
E
(
"(%p, %p)
\n
"
,
This
,
ppContainer
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p, %p)
\n
"
,
This
,
ppContainer
);
return
OleClientSite_QueryInterface
(
iface
,
&
IID_IOleContainer
,
(
void
**
)
ppContainer
)
;
}
static
HRESULT
WINAPI
OleClientSite_ShowObject
(
IOleClientSite
*
iface
)
{
...
...
@@ -219,6 +225,45 @@ static HRESULT WINAPI OleClientSite_RequestNewObjectLayout(IOleClientSite *iface
#undef IFACE2THIS
/****** IOleContainer *****/
#define IFACE2THIS(iface) DEFINE_THIS(IOCS, OleContainer, iface)
static
HRESULT
WINAPI
OleContainer_QueryInterface
(
IOleContainer
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
return
IOCS_QueryInterface
(
This
,
riid
,
ppv
);
}
static
ULONG
WINAPI
OleContainer_AddRef
(
IOleContainer
*
iface
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
return
IOCS_AddRef
(
This
);
}
static
ULONG
WINAPI
OleContainer_Release
(
IOleContainer
*
iface
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
return
IOCS_Release
(
This
);
}
static
HRESULT
WINAPI
OleContainer_ParseDisplayName
(
IOleContainer
*
iface
,
IBindCtx
*
pbc
,
LPOLESTR
pszDisplayName
,
ULONG
*
pchEaten
,
IMoniker
**
ppmkOut
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
FIXME
(
"(%p,%p,%s,%p,%p) - stub
\n
"
,
This
,
pbc
,
debugstr_w
(
pszDisplayName
),
pchEaten
,
ppmkOut
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
OleContainer_EnumObjects
(
IOleContainer
*
iface
,
DWORD
grfFlags
,
IEnumUnknown
**
ppenum
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
FIXME
(
"(%p, %u, %p) - stub
\n
"
,
This
,
grfFlags
,
ppenum
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
OleContainer_LockContainer
(
IOleContainer
*
iface
,
BOOL
fLock
)
{
IOCS
*
This
=
IFACE2THIS
(
iface
);
FIXME
(
"(%p, %s) - stub
\n
"
,
This
,
fLock
?
"TRUE"
:
"FALSE"
);
return
E_NOTIMPL
;
}
#undef IFACE2THIS
static
const
IOleClientSiteVtbl
OleClientSite_vtbl
=
{
OleClientSite_QueryInterface
,
...
...
@@ -231,6 +276,14 @@ static const IOleClientSiteVtbl OleClientSite_vtbl = {
OleClientSite_OnShowWindow
,
OleClientSite_RequestNewObjectLayout
};
static
const
IOleContainerVtbl
OleContainer_vtbl
=
{
OleContainer_QueryInterface
,
OleContainer_AddRef
,
OleContainer_Release
,
OleContainer_ParseDisplayName
,
OleContainer_EnumObjects
,
OleContainer_LockContainer
};
static
HRESULT
IOCS_Detach
(
IOCS
*
This
)
/* remove subclassing */
{
...
...
@@ -333,6 +386,7 @@ static HRESULT IOCS_Create( HWND hWnd, IUnknown *pUnkControl, IOCS **ppSite )
return
E_OUTOFMEMORY
;
This
->
lpOleClientSiteVtbl
=
&
OleClientSite_vtbl
;
This
->
lpOleContainerVtbl
=
&
OleContainer_vtbl
;
This
->
ref
=
1
;
This
->
OrigWndProc
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment