include: Add missing WMT_RIGHTS enum definition.

Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Vijay Kiran Kamuju 2019-02-27 21:48:34 +01:00 committed by Alexandre Julliard
parent e09bc9a0b1
commit 647ddb4821
1 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,6 @@
/*
* Copyright 2017 Alistair Leslie-Hughes
* Copyright 2019 Vijay Kiran Kamuju
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -17,3 +18,16 @@
*/
import "wmdrmsdk.idl";
typedef enum WMT_RIGHTS {
WMT_RIGHT_PLAYBACK = 0x00000001,
WMT_RIGHT_COPY_TO_NON_SDMI_DEVICE = 0x00000002,
WMT_RIGHT_COPY_TO_CD = 0x00000008,
WMT_RIGHT_COPY_TO_SDMI_DEVICE = 0x00000010,
WMT_RIGHT_ONE_TIME = 0x00000020,
WMT_RIGHT_SAVE_STREAM_PROTECTED = 0x00000040,
WMT_RIGHT_COPY = 0x00000080,
WMT_RIGHT_COLLABORATIVE_PLAY = 0x00000100,
WMT_RIGHT_SDMI_TRIGGER = 0x00010000,
WMT_RIGHT_SDMI_NOMORECOPIES = 0x00020000
} WMT_RIGHTS;