summaryrefslogtreecommitdiff
path: root/services.h
diff options
context:
space:
mode:
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