[GRASS-SVN] r72328 - grass/trunk/lib/python/ctypes/ctypesgencore
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Mar 6 08:24:11 PST 2018
Author: mmetz
Date: 2018-03-06 08:24:11 -0800 (Tue, 06 Mar 2018)
New Revision: 72328
Modified:
grass/trunk/lib/python/ctypes/ctypesgencore/ctypedescs.py
Log:
python ctypes: add __int64 to ctypes_type_map
Modified: grass/trunk/lib/python/ctypes/ctypesgencore/ctypedescs.py
===================================================================
--- grass/trunk/lib/python/ctypes/ctypesgencore/ctypedescs.py 2018-03-06 11:12:44 UTC (rev 72327)
+++ grass/trunk/lib/python/ctypes/ctypesgencore/ctypedescs.py 2018-03-06 16:24:11 UTC (rev 72328)
@@ -44,6 +44,7 @@
('int32_t', True, 0): 'c_int32',
('int64_t', True, 0): 'c_int64',
('apr_int64_t', True, 0): 'c_int64',
+ ('__int64', True, 0): 'c_int64',
('off64_t', True, 0): 'c_int64',
('uint8_t', True, 0): 'c_uint8',
('uint16_t', True, 0): 'c_uint16',
More information about the grass-commit
mailing list