Module: wine Branch: master Commit: 34eb4ab4c661e5e72d95fe8ec52dddae686afd11 URL: https://source.winehq.org/git/wine.git/?a=commit;h=34eb4ab4c661e5e72d95fe8ec...
Author: Nikolay Sivov nsivov@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@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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;