]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
authorDimitri Papadopoulos <dimitri_at@users.sf.net>
Thu, 25 Sep 2003 08:04:30 +0000 (08:04 +0000)
committerDimitri Papadopoulos <dimitri_at@users.sf.net>
Thu, 25 Sep 2003 08:04:30 +0000 (08:04 +0000)
AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
AnimateWindow().

winsup/w32api/ChangeLog
winsup/w32api/include/winuser.h

index b6b53e47e313151706ce293fef049dc9cff93e97..7a382b7d4474f88e2ef5669a9cafa8aea39b7139 100644 (file)
@@ -1,3 +1,10 @@
+2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
+
+       * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
+       AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
+       AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
+       AnimateWindow().
+
 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
 
        * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
index 981e3749a9d84743af1ec6e433424d748fe376bc..b8e4648913ea979dd9aafac8c922e5533918ebd3 100644 (file)
@@ -2062,6 +2062,15 @@ extern "C" {
 #if (_WIN32_WINNT >= 0x0501)
 #define GUI_16BITTASK 0x00000020
 #endif
+#define AW_HOR_POSITIVE 0x00000001
+#define AW_HOR_NEGATIVE 0x00000002
+#define AW_VER_POSITIVE 0x00000004
+#define AW_VER_NEGATIVE 0x00000008
+#define AW_CENTER 0x00000010
+#define AW_HIDE 0x00010000
+#define AW_ACTIVATE 0x00020000
+#define AW_SLIDE 0x00040000
+#define AW_BLEND 0x00080000
 #endif /* (WINVER >= 0x0500) */
 #if (_WIN32_WINNT >= 0x0500 || _WIN32_WINDOWS >= 0x0490)
 #define ASFW_ANY ((DWORD)-1)
This page took 0.035759 seconds and 5 git commands to generate.