Commit 34eb4ab4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

include: Fix a typo in D2D1_WINDOW_STATE values.

parent 64edf6f7
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment