summaryrefslogtreecommitdiff
path: root/services.h
blob: 3c2a59aa95ae9c1c94bf862c78d2c85b0e2e5142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 {
    char *Filename;
} Mpv_PlayFile;


// Overrides the displayed title in replay info
typedef struct {
    char *Title;
} Mpv_SetTitle;

typedef struct {
    int SeekAbsolute;
    int SeekRelative;
} Mpv_Seek;