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
63ad7110
Commit
63ad7110
authored
Nov 07, 2005
by
Vitaly Lipatov
Committed by
Alexandre Julliard
Nov 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AtlAxWinInit dummy implementation.
parent
a1cd3ab6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
atl.spec
dlls/atl/atl.spec
+1
-1
atl_main.c
dlls/atl/atl_main.c
+16
-0
No files found.
dlls/atl/atl.spec
View file @
63ad7110
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
39 stub AtlAxCreateControl
39 stub AtlAxCreateControl
40 stub AtlAxCreateControlEx
40 stub AtlAxCreateControlEx
41 stub AtlAxAttachControl
41 stub AtlAxAttachControl
42 st
ub AtlAxWinInit
42 st
dcall AtlAxWinInit()
43 stub AtlModuleAddCreateWndData
43 stub AtlModuleAddCreateWndData
44 stub AtlModuleExtractCreateWndData
44 stub AtlModuleExtractCreateWndData
45 stub AtlModuleRegisterWndClassInfoW
45 stub AtlModuleRegisterWndClassInfoW
...
...
dlls/atl/atl_main.c
View file @
63ad7110
...
@@ -165,6 +165,22 @@ HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEA* pM, BOOL bUnRegTypeLib,
...
@@ -165,6 +165,22 @@ HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEA* pM, BOOL bUnRegTypeLib,
return
S_OK
;
return
S_OK
;
}
}
/***********************************************************************
* AtlAxWinInit [ATL.@]
* Initializes the control-hosting code: registering the AtlAxWin7 and AtlAxWinLic7 window
* classes and some messages.
*
* RETURNS
* TRUE or FALSE
*/
HRESULT
WINAPI
AtlAxWinInit
(
void
)
{
FIXME
(
"Try use native atl.dll if possible
\n
"
);
return
E_FAIL
;
}
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
this
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
)
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
this
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
)
{
{
int
i
=
0
;
int
i
=
0
;
...
...
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