summaryrefslogtreecommitdiff
path: root/services.h
diff options
context:
space:
mode:
Diffstat (limited to 'services.h')
-rw-r--r--services.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/services.h b/services.h
index eea4641..c26ffba 100644
--- a/services.h
+++ b/services.h
@@ -1,6 +1,7 @@
#pragma once
#define MPV_PLAY_FILE "Mpv_PlayFile"
#define MPV_SET_TITLE "Mpv_SetTitle"
+#define MPV_SEEK "Mpv_Seek"
// play the given Filename, this can be a media file or a playlist
typedef struct
@@ -14,3 +15,9 @@ typedef struct
{
char *Title;
} Mpv_SetTitle;
+
+typedef struct
+{
+ int SeekAbsolute;
+ int SeekRelative;
+} Mpv_Seek; \ No newline at end of file