1 /**
2  * This file has no copyright assigned and is placed in the Public Domain.
3  * This file is part of the mingw-w64 runtime package.
4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5  */
6 #ifndef _INC_EVR9
7 #define _INC_EVR9
8 
9 #if (_WIN32_WINNT >= 0x0600)
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 typedef enum _evr9_tag_MFVideoAlphaBitmapFlags {
16   MFVideoAlphaBitmap_EntireDDS     = 0x00000001,
17   MFVideoAlphaBitmap_SrcColorKey   = 0x00000002,
18   MFVideoAlphaBitmap_SrcRect       = 0x00000004,
19   MFVideoAlphaBitmap_DestRect      = 0x00000008,
20   MFVideoAlphaBitmap_FilterMode    = 0x00000010,
21   MFVideoAlphaBitmap_Alpha         = 0x00000020,
22   MFVideoAlphaBitmap_BitMask       = 0x0000003f
23 } MFVideoAlphaBitmapFlags;
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 #endif /*(_WIN32_WINNT >= 0x0600)*/
29 #endif /*_INC_EVR9*/
30