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
6c8a2ba7
Commit
6c8a2ba7
authored
Oct 17, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl100: Trace ATL version and keep debug channel consistent.
parent
8c33b912
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
atl.c
dlls/atl100/atl.c
+3
-2
atl_ax.c
dlls/atl100/atl_ax.c
+1
-1
No files found.
dlls/atl100/atl.c
View file @
6c8a2ba7
...
...
@@ -24,7 +24,7 @@
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
atl
100
);
WINE_DEFAULT_DEBUG_CHANNEL
(
atl
);
typedef
unsigned
char
cpp_bool
;
...
...
@@ -299,7 +299,7 @@ HRESULT WINAPI AtlModuleAddTermFunc(_ATL_MODULE *pM, _ATL_TERMFUNC *pFunc, DWORD
{
_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
);
termfunc_elem
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
_ATL_TERMFUNC_ELEM
));
termfunc_elem
->
pFunc
=
pFunc
;
...
...
@@ -784,6 +784,7 @@ HRESULT WINAPI AtlGetPerUserRegistration(cpp_bool *pbEnabled)
*/
DWORD
WINAPI
AtlGetVersion
(
void
*
pReserved
)
{
TRACE
(
"version %04x (%p)
\n
"
,
_ATL_VER
,
pReserved
);
return
_ATL_VER
;
}
...
...
dlls/atl100/atl_ax.c
View file @
6c8a2ba7
...
...
@@ -89,7 +89,7 @@ BOOL WINAPI AtlAxWinInit(void)
const
WCHAR
AtlAxWin100
[]
=
{
'A'
,
't'
,
'l'
,
'A'
,
'x'
,
'W'
,
'i'
,
'n'
,
'1'
,
'0'
,
'0'
,
0
};
const
WCHAR
AtlAxWinLic100
[]
=
{
'A'
,
't'
,
'l'
,
'A'
,
'x'
,
'W'
,
'i'
,
'n'
,
'L'
,
'i'
,
'c'
,
'1'
,
'0'
,
'0'
,
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