소스 검색

python ctypes: add __int64 to ctypes_type_map

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@72328 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 7 년 전
부모
커밋
6db2594a88
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lib/python/ctypes/ctypesgencore/ctypedescs.py

+ 1 - 0
lib/python/ctypes/ctypesgencore/ctypedescs.py

@@ -44,6 +44,7 @@ ctypes_type_map = {
     ('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',