Nikolay Sivov : include: Fix a typo in D2D1_WINDOW_STATE values.

Alexandre Julliard julliard at winehq.org
Mon Jan 28 16:17:00 CST 2019


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Jan 27 22:14:48 2019 +0300

include: Fix a typo in D2D1_WINDOW_STATE values.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/d2d1.idl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/d2d1.idl b/include/d2d1.idl
index c9fb8f0..08487fa 100644
--- a/include/d2d1.idl
+++ b/include/d2d1.idl
@@ -274,8 +274,8 @@ typedef enum D2D1_FEATURE_LEVEL
 
 typedef enum D2D1_WINDOW_STATE
 {
-    D2D1_WINDOW_STATE_NONE = 0x0000000,
-    D2D1_WINDOW_STATE_OCCLUDED = 0x0000001,
+    D2D1_WINDOW_STATE_NONE = 0,
+    D2D1_WINDOW_STATE_OCCLUDED = 1,
     D2D1_WINDOW_STATE_FORCE_DWORD = 0xffffffff,
 } D2D1_WINDOW_STATE;
 




More information about the wine-cvs mailing list