summaryrefslogtreecommitdiff
path: root/mpv.py
diff options
context:
space:
mode:
Diffstat (limited to 'mpv.py')
-rw-r--r--mpv.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/mpv.py b/mpv.py
index 18dec07..51eaae8 100644
--- a/mpv.py
+++ b/mpv.py
@@ -443,9 +443,12 @@ class MpvEventLogMessage(Structure):
return lazy_decoder(self._text)
class MpvEventEndFile(Structure):
- _fields_ = [('reason', c_int),
- ('error', c_int)]
-
+ _fields_ = [
+ ('reason', c_int),
+ ('error', c_int),
+ ('playlist_entry_id', c_ulonglong),
+ ]
+
EOF = 0
RESTARTED = 1
ABORTED = 2