diff options
Diffstat (limited to 'services.h')
-rw-r--r-- | services.h | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,14 +1,16 @@ #pragma once -#define MPV_START_PLAY_SERVICE "Mpv-StartPlayService_v1_0" -#define MPV_SET_TITLE_SERVICE "Mpv-SetTitleService_v1_0" +#define MPV_PLAY_FILE "Mpv_PlayFile" +#define MPV_SET_TITLE "Mpv_SetTitle" +// play the given Filename, this can be a media file or a playlist typedef struct { - char* Filename; - char* Title; -} Mpv_StartPlayService_v1_0_t; + char *Filename; +} Mpv_PlayFile; + +// Overrides the displayed title in replay info typedef struct { - char* Title; -} Mpv_SetTitleService_v1_0_t;
\ No newline at end of file + char *Title; +} Mpv_SetTitle; |