Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
9b7b3ef1
Commit
9b7b3ef1
authored
Feb 23, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 24, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Test to show that caption added for WS_EX_LAYERED as well.
parent
daa49433
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
win.c
dlls/user32/tests/win.c
+8
-0
No files found.
dlls/user32/tests/win.c
View file @
9b7b3ef1
...
...
@@ -3424,6 +3424,14 @@ static void test_window_styles(void)
check_window_style
(
WS_CHILD
,
WS_EX_DLGMODALFRAME
|
WS_EX_STATICEDGE
,
WS_CHILD
,
WS_EX_STATICEDGE
|
WS_EX_WINDOWEDGE
|
WS_EX_DLGMODALFRAME
);
check_window_style
(
WS_CAPTION
,
WS_EX_STATICEDGE
,
WS_CLIPSIBLINGS
|
WS_CAPTION
,
WS_EX_STATICEDGE
|
WS_EX_WINDOWEDGE
);
check_window_style
(
0
,
WS_EX_APPWINDOW
,
WS_CLIPSIBLINGS
|
WS_CAPTION
,
WS_EX_APPWINDOW
|
WS_EX_WINDOWEDGE
);
if
(
pGetLayeredWindowAttributes
)
{
check_window_style
(
0
,
WS_EX_LAYERED
,
WS_CLIPSIBLINGS
|
WS_CAPTION
,
WS_EX_LAYERED
|
WS_EX_WINDOWEDGE
);
check_window_style
(
0
,
WS_EX_LAYERED
|
WS_EX_TRANSPARENT
,
WS_CLIPSIBLINGS
|
WS_CAPTION
,
WS_EX_LAYERED
|
WS_EX_TRANSPARENT
|
WS_EX_WINDOWEDGE
);
check_window_style
(
0
,
WS_EX_LAYERED
|
WS_EX_TRANSPARENT
|
WS_EX_TOOLWINDOW
,
WS_CLIPSIBLINGS
|
WS_CAPTION
,
WS_EX_LAYERED
|
WS_EX_TRANSPARENT
|
WS_EX_TOOLWINDOW
|
WS_EX_WINDOWEDGE
);
}
}
static
void
test_scrollwindow
(
HWND
hwnd
)
...
...
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