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
7c5f011c
Commit
7c5f011c
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: Implement AtlAxAttachControl.
parent
e1d94f36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
atl.spec
dlls/atl/atl.spec
+1
-1
atl_ax.c
dlls/atl/atl_ax.c
+14
-2
No files found.
dlls/atl/atl.spec
View file @
7c5f011c
...
...
@@ -32,7 +32,7 @@
38 stdcall AtlAxCreateDialogA(long str long ptr long)
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr)
40 stdcall AtlAxCreateControlEx(ptr ptr ptr ptr ptr ptr ptr)
41 st
ub AtlAxAttachControl
41 st
dcall AtlAxAttachControl(ptr ptr ptr)
42 stdcall AtlAxWinInit()
43 stdcall AtlModuleAddCreateWndData(ptr ptr ptr)
44 stdcall AtlModuleExtractCreateWndData(ptr)
...
...
dlls/atl/atl_ax.c
View file @
7c5f011c
...
...
@@ -470,8 +470,20 @@ HRESULT WINAPI AtlAxCreateControlEx(LPCOLESTR lpszName, HWND hWnd,
*/
HRESULT
WINAPI
AtlAxAttachControl
(
IUnknown
*
pControl
,
HWND
hWnd
,
IUnknown
**
ppUnkContainer
)
{
FIXME
(
"(%p %p %p) - stub
\n
"
,
pControl
,
hWnd
,
ppUnkContainer
);
return
E_NOTIMPL
;
IOCS
*
pUnkContainer
;
HRESULT
hr
;
TRACE
(
"%p %p %p
\n
"
,
pControl
,
hWnd
,
ppUnkContainer
);
*
ppUnkContainer
=
NULL
;
hr
=
IOCS_Create
(
hWnd
,
pControl
,
&
pUnkContainer
);
if
(
SUCCEEDED
(
hr
)
)
{
*
ppUnkContainer
=
(
IUnknown
*
)
pUnkContainer
;
}
return
hr
;
}
/**********************************************************************
...
...
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