Skip to content

Commit bc5dadf

Browse files
committed
Add char*** mapping
for libvlc_media_get_meta_extra_names
1 parent 7730d22 commit bc5dadf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

generator/generate.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Code generator for python ctypes bindings for VLC
44
#
5-
# Copyright (C) 2009-2017 the VideoLAN team
5+
# Copyright (C) 2009-2023 the VideoLAN team
66
# $Id: $
77
#
88
# Authors: Olivier Aubert <contact at olivieraubert.net>
@@ -56,7 +56,7 @@
5656

5757
# Version number MUST have a major < 10 and a minor < 99 so that the
5858
# generated dist version can be correctly generated.
59-
__version__ = '1.22'
59+
__version__ = '1.23'
6060

6161
_debug = False
6262

@@ -1060,6 +1060,7 @@ class PythonGenerator(_Generator):
10601060
'bool': 'ctypes.c_bool',
10611061
'bool*': 'ctypes.POINTER(ctypes.c_bool)',
10621062
'char**': 'ListPOINTER(ctypes.c_char_p)',
1063+
'char***': 'ctypes.POINTER(ListPOINTER(ctypes.c_char_p))',
10631064
'double': 'ctypes.c_double',
10641065
'double*': 'ctypes.POINTER(ctypes.c_double)',
10651066
'float': 'ctypes.c_float',

0 commit comments

Comments
 (0)