Changeset 627

Show
Ignore:
Timestamp:
05/01/08 14:58:46 (14 months ago)
Author:
hobu
Message:

use int8_t instead of ubyte for return type for scan angle rank

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/python/liblas/core.py

    r597 r627  
    176176las.LASPoint_SetTime.errcheck = check_return 
    177177 
    178 las.LASPoint_GetScanAngleRank.restype = ctypes.c_ubyte 
     178las.LASPoint_GetScanAngleRank.restype = ctypes.c_int8 
    179179las.LASPoint_GetScanAngleRank.argtypes = [ctypes.c_void_p] 
    180180las.LASPoint_GetScanAngleRank.errcheck = check_value 
    181181las.LASPoint_SetScanAngleRank.restype = ctypes.c_int 
    182 las.LASPoint_SetScanAngleRank.argtypes = [ctypes.c_void_p, ctypes.c_ubyte] 
     182las.LASPoint_SetScanAngleRank.argtypes = [ctypes.c_void_p, ctypes.c_int8] 
    183183las.LASPoint_SetScanAngleRank.errcheck = check_return 
    184184