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 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>
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' ,
You can’t perform that action at this time.
0 commit comments