user32: Add more ex-style trace messages.

Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Akihiro Sagawa 2018-03-11 22:14:20 +09:00 committed by Alexandre Julliard
parent 387a9f7038
commit 8960cf3d44
1 changed files with 7 additions and 1 deletions

View File

@ -1292,7 +1292,10 @@ static void dump_window_styles( DWORD style, DWORD exstyle )
if(exstyle & WS_EX_STATICEDGE) TRACE(" WS_EX_STATICEDGE");
if(exstyle & WS_EX_APPWINDOW) TRACE(" WS_EX_APPWINDOW");
if(exstyle & WS_EX_LAYERED) TRACE(" WS_EX_LAYERED");
if(exstyle & WS_EX_NOINHERITLAYOUT) TRACE(" WS_EX_NOINHERITLAYOUT");
if(exstyle & WS_EX_LAYOUTRTL) TRACE(" WS_EX_LAYOUTRTL");
if(exstyle & WS_EX_COMPOSITED) TRACE(" WS_EX_COMPOSITED");
if(exstyle & WS_EX_NOACTIVATE) TRACE(" WS_EX_NOACTIVATE");
#define DUMPED_EX_STYLES \
((DWORD)(WS_EX_DLGMODALFRAME | \
@ -1313,7 +1316,10 @@ static void dump_window_styles( DWORD style, DWORD exstyle )
WS_EX_STATICEDGE | \
WS_EX_APPWINDOW | \
WS_EX_LAYERED | \
WS_EX_LAYOUTRTL))
WS_EX_NOINHERITLAYOUT | \
WS_EX_LAYOUTRTL | \
WS_EX_COMPOSITED |\
WS_EX_NOACTIVATE))
if(exstyle & ~DUMPED_EX_STYLES) TRACE(" %08x", exstyle & ~DUMPED_EX_STYLES);
TRACE("\n");