diff options
author | jaseg <git@jaseg.de> | 2023-07-22 14:37:52 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-07-22 14:37:52 +0200 |
commit | 03947f272b63a0cfacd5c9163198436bcc17f8a6 (patch) | |
tree | e4442d657937b369b274224218e8db3052d060a1 | |
parent | 2d787a977dc46ef94e5c569dab4358835891ca25 (diff) | |
download | python-mpv-03947f272b63a0cfacd5c9163198436bcc17f8a6.tar.gz python-mpv-03947f272b63a0cfacd5c9163198436bcc17f8a6.tar.bz2 python-mpv-03947f272b63a0cfacd5c9163198436bcc17f8a6.zip |
Add missing fields to MpvEventEndFile
-rw-r--r-- | mpv.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -447,6 +447,8 @@ class MpvEventEndFile(Structure): ('reason', c_int), ('error', c_int), ('playlist_entry_id', c_ulonglong), + ('playlist_insert_id', c_ulonglong), + ('playlist_insert_num_entries', c_int), ] EOF = 0 |