Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f949c879
Commit
f949c879
authored
Nov 17, 2015
by
Qian Hong
Committed by
Alexandre Julliard
Nov 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl100: Implemented semi stub AtlAxCreateControlLic and AtlAxCreateControlLicEx.
Signed-off-by:
Qian Hong
<
qhong@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
480e95ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
17 deletions
+13
-17
atl_ax.c
dlls/atl/atl_ax.c
+13
-17
No files found.
dlls/atl/atl_ax.c
View file @
f949c879
...
...
@@ -1035,15 +1035,15 @@ static enum content get_content_type(LPCOLESTR name, CLSID *control_id)
}
/***********************************************************************
* AtlAxCreateControl
Ex
[atl100.@]
* AtlAxCreateControl
LicEx
[atl100.@]
*
* REMARKS
* See http://www.codeproject.com/com/cwebpage.asp for some background
*
*/
HRESULT
WINAPI
AtlAxCreateControlEx
(
LPCOLESTR
lpszName
,
HWND
hWnd
,
HRESULT
WINAPI
AtlAxCreateControl
Lic
Ex
(
LPCOLESTR
lpszName
,
HWND
hWnd
,
IStream
*
pStream
,
IUnknown
**
ppUnkContainer
,
IUnknown
**
ppUnkControl
,
REFIID
iidSink
,
IUnknown
*
punkSink
)
REFIID
iidSink
,
IUnknown
*
punkSink
,
BSTR
lic
)
{
CLSID
controlId
;
HRESULT
hRes
;
...
...
@@ -1053,8 +1053,11 @@ HRESULT WINAPI AtlAxCreateControlEx(LPCOLESTR lpszName, HWND hWnd,
IUnknown
*
pContainer
=
NULL
;
enum
content
content
;
TRACE
(
"(%s %p %p %p %p %p %p)
\n
"
,
debugstr_w
(
lpszName
),
hWnd
,
pStream
,
ppUnkContainer
,
ppUnkControl
,
iidSink
,
punkSink
);
TRACE
(
"(%s %p %p %p %p %p %p %s)
\n
"
,
debugstr_w
(
lpszName
),
hWnd
,
pStream
,
ppUnkContainer
,
ppUnkControl
,
iidSink
,
punkSink
,
debugstr_w
(
lic
));
if
(
lic
)
FIXME
(
"semi stub
\n
"
);
if
(
ppUnkContainer
)
*
ppUnkContainer
=
NULL
;
if
(
ppUnkControl
)
*
ppUnkControl
=
NULL
;
...
...
@@ -1427,28 +1430,21 @@ INT_PTR WINAPI AtlAxDialogBoxA(HINSTANCE hInstance, LPCSTR lpTemplateName, HWND
return
0
;
}
#if _ATL_VER >= _ATL_VER_80
/***********************************************************************
* AtlAxCreateControlLic [atl100.59]
*
*/
HRESULT
WINAPI
AtlAxCreateControlLic
(
const
WCHAR
*
lpTricsData
,
HWND
hwnd
,
IStream
*
stream
,
IUnknown
**
container
,
BSTR
lic
)
{
FIXME
(
"(%s %p %p %p %s)
\n
"
,
debugstr_w
(
lpTricsData
),
hwnd
,
stream
,
container
,
debugstr_w
(
lic
));
return
E_NOTIMPL
;
return
AtlAxCreateControlLicEx
(
lpTricsData
,
hwnd
,
stream
,
container
,
NULL
,
NULL
,
NULL
,
lic
);
}
/***********************************************************************
* AtlAxCreateControl
LicEx [atl100.60
]
* AtlAxCreateControl
Ex [atl100.@
]
*
*/
HRESULT
WINAPI
AtlAxCreateControl
Lic
Ex
(
const
WCHAR
*
lpTricsData
,
HWND
hwnd
,
IStream
*
stream
,
IUnknown
**
container
,
IUnknown
**
control
,
REFIID
iidSink
,
IUnknown
*
punkSink
,
BSTR
lic
)
HRESULT
WINAPI
AtlAxCreateControlEx
(
const
WCHAR
*
lpTricsData
,
HWND
hwnd
,
IStream
*
stream
,
IUnknown
**
container
,
IUnknown
**
control
,
REFIID
iidSink
,
IUnknown
*
punkSink
)
{
FIXME
(
"(%s %p %p %p %p %s %p %s)
\n
"
,
debugstr_w
(
lpTricsData
),
hwnd
,
stream
,
container
,
control
,
debugstr_guid
(
iidSink
),
punkSink
,
debugstr_w
(
lic
));
return
E_NOTIMPL
;
return
AtlAxCreateControlLicEx
(
lpTricsData
,
hwnd
,
stream
,
container
,
control
,
iidSink
,
punkSink
,
NULL
);
}
#endif
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