Nikolay Sivov : include: Add Media Session capabilities flags definition.

Alexandre Julliard julliard at winehq.org
Tue Oct 1 15:50:31 CDT 2019


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue Oct  1 12:56:10 2019 +0300

include: Add Media Session capabilities flags definition.

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

---

 include/mfapi.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/include/mfapi.h b/include/mfapi.h
index 346bd38d92..43f5cd6087 100644
--- a/include/mfapi.h
+++ b/include/mfapi.h
@@ -380,6 +380,14 @@ typedef enum
     MF_TOPOSTATUS_ENDED = 400,
 } MF_TOPOSTATUS;
 
+/* Media Session capabilities. */
+#define MFSESSIONCAP_START                 0x00000001
+#define MFSESSIONCAP_SEEK                  0x00000002
+#define MFSESSIONCAP_PAUSE                 0x00000004
+#define MFSESSIONCAP_RATE_FORWARD          0x00000010
+#define MFSESSIONCAP_RATE_REVERSE          0x00000020
+#define MFSESSIONCAP_DOES_NOT_USE_NETWORK  0x00000040
+
 HRESULT WINAPI MFAddPeriodicCallback(MFPERIODICCALLBACK callback, IUnknown *context, DWORD *key);
 HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue);
 HRESULT WINAPI MFAllocateWorkQueueEx(MFASYNC_WORKQUEUE_TYPE queue_type, DWORD *queue);




More information about the wine-cvs mailing list