Akihiro Sagawa : user32: Add more ex-style trace messages.

Alexandre Julliard julliard at winehq.org
Mon Mar 12 17:40:25 CDT 2018


Module: wine
Branch: master
Commit: 8960cf3d44d26c8d3043734ef2a6bb2bb019ea20
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8960cf3d44d26c8d3043734ef2a6bb2bb019ea20

Author: Akihiro Sagawa <sagawa.aki at gmail.com>
Date:   Sun Mar 11 22:14:20 2018 +0900

user32: Add more ex-style trace messages.

Signed-off-by: Akihiro Sagawa <sagawa.aki at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/user32/win.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dlls/user32/win.c b/dlls/user32/win.c
index 794f333..8c89768 100644
--- a/dlls/user32/win.c
+++ b/dlls/user32/win.c
@@ -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");




More information about the wine-cvs mailing list