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
6a8b38ff
Commit
6a8b38ff
authored
Apr 21, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Dump more SetWindowPos flags.
parent
6b42c054
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
17 deletions
+9
-17
winpos.c
dlls/user32/winpos.c
+9
-17
No files found.
dlls/user32/winpos.c
View file @
6a8b38ff
...
...
@@ -1465,6 +1465,11 @@ LONG WINPOS_HandleWindowPosChanging( HWND hwnd, WINDOWPOS *winpos )
*/
static
void
dump_winpos_flags
(
UINT
flags
)
{
static
const
DWORD
dumped_flags
=
(
SWP_NOSIZE
|
SWP_NOMOVE
|
SWP_NOZORDER
|
SWP_NOREDRAW
|
SWP_NOACTIVATE
|
SWP_FRAMECHANGED
|
SWP_SHOWWINDOW
|
SWP_HIDEWINDOW
|
SWP_NOCOPYBITS
|
SWP_NOOWNERZORDER
|
SWP_NOSENDCHANGING
|
SWP_DEFERERASE
|
SWP_ASYNCWINDOWPOS
|
SWP_NOCLIENTSIZE
|
SWP_NOCLIENTMOVE
|
SWP_STATECHANGED
);
TRACE
(
"flags:"
);
if
(
flags
&
SWP_NOSIZE
)
TRACE
(
" SWP_NOSIZE"
);
if
(
flags
&
SWP_NOMOVE
)
TRACE
(
" SWP_NOMOVE"
);
...
...
@@ -1479,25 +1484,12 @@ static void dump_winpos_flags(UINT flags)
if
(
flags
&
SWP_NOSENDCHANGING
)
TRACE
(
" SWP_NOSENDCHANGING"
);
if
(
flags
&
SWP_DEFERERASE
)
TRACE
(
" SWP_DEFERERASE"
);
if
(
flags
&
SWP_ASYNCWINDOWPOS
)
TRACE
(
" SWP_ASYNCWINDOWPOS"
);
if
(
flags
&
SWP_NOCLIENTSIZE
)
TRACE
(
" SWP_NOCLIENTSIZE"
);
if
(
flags
&
SWP_NOCLIENTMOVE
)
TRACE
(
" SWP_NOCLIENTMOVE"
);
if
(
flags
&
SWP_STATECHANGED
)
TRACE
(
" SWP_STATECHANGED"
);
#define DUMPED_FLAGS \
(SWP_NOSIZE | \
SWP_NOMOVE | \
SWP_NOZORDER | \
SWP_NOREDRAW | \
SWP_NOACTIVATE | \
SWP_FRAMECHANGED | \
SWP_SHOWWINDOW | \
SWP_HIDEWINDOW | \
SWP_NOCOPYBITS | \
SWP_NOOWNERZORDER | \
SWP_NOSENDCHANGING | \
SWP_DEFERERASE | \
SWP_ASYNCWINDOWPOS)
if
(
flags
&
~
DUMPED_FLAGS
)
TRACE
(
" %08x"
,
flags
&
~
DUMPED_FLAGS
);
if
(
flags
&
~
dumped_flags
)
TRACE
(
" %08x"
,
flags
&
~
dumped_flags
);
TRACE
(
"
\n
"
);
#undef DUMPED_FLAGS
}
/***********************************************************************
...
...
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