Changeset 1659 for trunk/bindings


Ignore:
Timestamp:
21/10/11 20:03:09 (7 months ago)
Author:
Peter Peterson
Message:

Refs #285

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bindings/python/nxs/napi.py

    r1658 r1659  
    135135 
    136136# Defined ctypes 
    137 from ctypes import c_void_p, c_int, c_long, c_char, c_char_p 
     137from ctypes import c_void_p, c_int, c_int64, c_long, c_char, c_char_p 
    138138from ctypes import byref as _ref 
    139139c_void_pp = ctypes.POINTER(c_void_p) 
    140140c_int_p = ctypes.POINTER(c_int) 
     141c_int64_p = ctypes.POINTER(c_int64) 
    141142class _NXlink(ctypes.Structure): 
    142143    _fields_ = [("iTag", c_long), 
Note: See TracChangeset for help on using the changeset viewer.