summaryrefslogtreecommitdiff
path: root/services.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-06-10 20:01:40 +0200
committerchriszero <zerov83@gmail.com>2015-06-10 20:01:40 +0200
commit5ac0830333ea2c059741795ef993052cdcc62c0d (patch)
tree60a09563e8c139ec1858f852fc059a6ea86fe1c0 /services.h
parent8c6697c872bb1dad8281f43d1777fe4ec009708c (diff)
downloadvdr-plugin-plex-5ac0830333ea2c059741795ef993052cdcc62c0d.tar.gz
vdr-plugin-plex-5ac0830333ea2c059741795ef993052cdcc62c0d.tar.bz2
Use Mpv for playing media. Configure via plugin setup.
Diffstat (limited to 'services.h')
-rw-r--r--services.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/services.h b/services.h
new file mode 100644
index 0000000..bf14b70
--- /dev/null
+++ b/services.h
@@ -0,0 +1,22 @@
+#pragma once
+#include <string>
+
+#define PLAY_OSD_3DMODE_SERVICE "Play-Osd3DModeService-v1.0"
+#define PLAY_START_PLAY_SERVICE "Play-StartPlayService_v1_0"
+#define PLAY_SET_TITLE_SERVICE "Play-SetTitleService_v1_0"
+
+typedef struct
+{
+ int Mode;
+} Play_Osd3DModeService_v1_0_t;
+
+typedef struct
+{
+ char* Filename;
+ char* Title;
+} Play_StartPlayService_v1_0_t;
+
+typedef struct
+{
+ char* Title;
+} Play_SetTitleService_v1_0_t; \ No newline at end of file