blob: c26ffbac50364971ec6b5b2464d2395abe0506d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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;
|