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
ed62fcb7
Commit
ed62fcb7
authored
Mar 15, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Mar 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl100: Fixed register class types in AtlAxWinInit.
parent
ef601fcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
atl_ax.c
dlls/atl100/atl_ax.c
+1
-1
atl.c
dlls/atl100/tests/atl.c
+2
-0
No files found.
dlls/atl100/atl_ax.c
View file @
ed62fcb7
...
...
@@ -95,7 +95,7 @@ BOOL WINAPI AtlAxWinInit(void)
return
FALSE
;
wcex
.
cbSize
=
sizeof
(
wcex
);
wcex
.
style
=
0
;
wcex
.
style
=
CS_GLOBALCLASS
|
CS_DBLCLKS
;
wcex
.
cbClsExtra
=
0
;
wcex
.
cbWndExtra
=
0
;
wcex
.
hInstance
=
GetModuleHandleW
(
NULL
);
...
...
dlls/atl100/tests/atl.c
View file @
ed62fcb7
...
...
@@ -583,11 +583,13 @@ static void test_ax_win(void)
wcex
.
cbSize
=
sizeof
(
wcex
);
ret
=
GetClassInfoExW
(
hinstance
,
AtlAxWin100
,
&
wcex
);
ok
(
ret
,
"AtlAxWin100 has not registered
\n
"
);
ok
(
wcex
.
style
==
(
CS_GLOBALCLASS
|
CS_DBLCLKS
),
"wcex.style %08x
\n
"
,
wcex
.
style
);
memset
(
&
wcex
,
0
,
sizeof
(
wcex
));
wcex
.
cbSize
=
sizeof
(
wcex
);
ret
=
GetClassInfoExW
(
hinstance
,
AtlAxWinLic100
,
&
wcex
);
ok
(
ret
,
"AtlAxWinLic100 has not registered
\n
"
);
ok
(
wcex
.
style
==
(
CS_GLOBALCLASS
|
CS_DBLCLKS
),
"wcex.style %08x
\n
"
,
wcex
.
style
);
}
START_TEST
(
atl
)
...
...
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