Zhiyi Zhang : include: Add more EnableThemeDialogTexture() option flags.

Alexandre Julliard julliard at winehq.org
Tue Dec 7 15:58:44 CST 2021


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

Author: Zhiyi Zhang <zzhang at codeweavers.com>
Date:   Tue Dec  7 17:12:43 2021 +0800

include: Add more EnableThemeDialogTexture() option flags.

Signed-off-by: Zhiyi Zhang <zzhang at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/uxtheme.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/uxtheme.h b/include/uxtheme.h
index 384c3655b41..b44e06de611 100644
--- a/include/uxtheme.h
+++ b/include/uxtheme.h
@@ -96,7 +96,10 @@ HRESULT WINAPI DrawThemeTextEx(HTHEME,HDC,int,int,LPCWSTR,int,DWORD,RECT*,
 #define ETDT_DISABLE       0x00000001
 #define ETDT_ENABLE        0x00000002
 #define ETDT_USETABTEXTURE 0x00000004
+#define ETDT_USEAEROWIZARDTABTEXTURE 0x00000008
 #define ETDT_ENABLETAB     (ETDT_ENABLE|ETDT_USETABTEXTURE)
+#define ETDT_ENABLEAEROWIZARDTAB (ETDT_ENABLE|ETDT_USEAEROWIZARDTABTEXTURE)
+#define ETDT_VALIDBITS     (ETDT_DISABLE|ETDT_ENABLE|ETDT_USETABTEXTURE|ETDT_USEAEROWIZARDTABTEXTURE)
 
 HRESULT WINAPI EnableThemeDialogTexture(HWND,DWORD);
 HRESULT WINAPI EnableTheming(BOOL);




More information about the wine-cvs mailing list