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
0fb6b350
Commit
0fb6b350
authored
Oct 17, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Trace ATL version.
parent
3e88582a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
atl_main.c
dlls/atl/atl_main.c
+4
-3
No files found.
dlls/atl/atl_main.c
View file @
0fb6b350
...
...
@@ -146,7 +146,7 @@ HRESULT WINAPI AtlModuleAddTermFunc(_ATL_MODULEW *pM, _ATL_TERMFUNC *pFunc, DWOR
{
_ATL_TERMFUNC_ELEM
*
termfunc_elem
;
TRACE
(
"
(%p %p %ld)
\n
"
,
pM
,
pFunc
,
dw
);
TRACE
(
"
version %04x (%p %p %ld)
\n
"
,
_ATL_VER
,
pM
,
pFunc
,
dw
);
if
(
pM
->
cbSize
>
ATLVer1Size
)
{
...
...
@@ -590,7 +590,8 @@ HRESULT WINAPI DllCanUnloadNow(void)
*/
DWORD
WINAPI
AtlGetVersion
(
void
*
pReserved
)
{
return
_ATL_VER
;
TRACE
(
"version %04x (%p)
\n
"
,
_ATL_VER
,
pReserved
);
return
_ATL_VER
;
}
/**********************************************************************
...
...
@@ -617,7 +618,7 @@ BOOL WINAPI AtlAxWinInit(void)
WNDCLASSEXW
wcex
;
const
WCHAR
AtlAxWin
[]
=
{
'A'
,
't'
,
'l'
,
'A'
,
'x'
,
'W'
,
'i'
,
'n'
,
0
};
FIXME
(
"
semi-stub
\n
"
);
FIXME
(
"
version %04x semi-stub
\n
"
,
_ATL_VER
);
if
(
FAILED
(
OleInitialize
(
NULL
)
)
)
return
FALSE
;
...
...
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