[PATCH 4/9] include: Add more EnableThemeDialogTexture() option flags.

Zhiyi Zhang zzhang at codeweavers.com
Tue Dec 7 03:12:43 CST 2021


Signed-off-by: Zhiyi Zhang <zzhang at codeweavers.com>
---
 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);
-- 
2.32.0




More information about the wine-devel mailing list