File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Code generator for python ctypes bindings for VLC
4
4
#
5
- # Copyright (C) 2009-2017 the VideoLAN team
5
+ # Copyright (C) 2009-2023 the VideoLAN team
6
6
# $Id: $
7
7
#
8
8
# Authors: Olivier Aubert <contact at olivieraubert.net>
56
56
57
57
# Version number MUST have a major < 10 and a minor < 99 so that the
58
58
# generated dist version can be correctly generated.
59
- __version__ = '1.22 '
59
+ __version__ = '1.23 '
60
60
61
61
_debug = False
62
62
@@ -1060,6 +1060,7 @@ class PythonGenerator(_Generator):
1060
1060
'bool' : 'ctypes.c_bool' ,
1061
1061
'bool*' : 'ctypes.POINTER(ctypes.c_bool)' ,
1062
1062
'char**' : 'ListPOINTER(ctypes.c_char_p)' ,
1063
+ 'char***' : 'ctypes.POINTER(ListPOINTER(ctypes.c_char_p))' ,
1063
1064
'double' : 'ctypes.c_double' ,
1064
1065
'double*' : 'ctypes.POINTER(ctypes.c_double)' ,
1065
1066
'float' : 'ctypes.c_float' ,
You can’t perform that action at this time.
0 commit comments