From 1534dca85838970d2f090744d8a3ab5aad279e4c Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos Date: Wed, 24 Sep 2003 10:03:39 +0000 Subject: * include/uxtheme.h (PROPERTYORIGIN): the documentation of PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation suggests it's actually `enum PROPERTYORIGIN'. Keep both. * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests it's either `THEME_SIZE' or `THEMESIZE' but experimentation suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE' and `enum THEMESIZE'. --- winsup/w32api/include/uxtheme.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/w32api/include/uxtheme.h') diff --git a/winsup/w32api/include/uxtheme.h b/winsup/w32api/include/uxtheme.h index e9fb8a53c..0d32d820c 100644 --- a/winsup/w32api/include/uxtheme.h +++ b/winsup/w32api/include/uxtheme.h @@ -34,14 +34,14 @@ extern "C" { #define HTTB_SIZINGTEMPLATE 0x0100 #define HTTB_SYSTEMSIZINGMARGINS 0x0200 -typedef enum { +typedef enum PROPERTYORIGIN { PO_STATE = 0, PO_PART = 1, PO_CLASS = 2, PO_GLOBAL = 3, PO_NOTFOUND = 4 } PROPERTYORIGIN; -typedef enum { +typedef enum THEMESIZE { TS_MIN, TS_TRUE, TS_DRAW -- cgit v1.2.3