Changeset 656:3540f7d44d9f
- Timestamp:
- 05/17/08 00:44:23 (2 years ago)
- Branch:
- default
- Convert:
- svn:1766ff46-f334-0410-ab20-d63176f87757/trunk@723
- File:
-
- 1 edited
-
python/liblas/core.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
python/liblas/core.py
r655 r656 386 386 las.LASHeader_SetProj4.errcheck = check_return 387 387 388 las.LASHeader_GetVLR.argtypes = [ctypes.c_void_p, ctypes.c_int] 389 las.LASHeader_GetVLR.errcheck = check_void 390 las.LASHeader_GetVLR.restype = ctypes.c_void_p 391 392 las.LASHeader_DeleteVLR.argtypes = [ctypes.c_void_p, ctypes.c_int] 393 las.LASHeader_DeleteVLR.errcheck = check_return 394 395 las.LASHeader_AddVLR.argtypes = [ctypes.c_void_p, ctypes.c_void_p] 396 las.LASHeader_AddVLR.errcheck = check_return 388 397 389 398 las.LASWriter_Create.restype = ctypes.c_void_p … … 426 435 las.LASHeader_SetGUID.restype = ctypes.c_int 427 436 437 las.LASVLR_Create.errcheck = check_void 438 las.LASVLR_Create.restype = ctypes.c_void_p 439 440 las.LASVLR_Destroy.argtypes = [ctypes.c_void_p] 441 las.LASVLR_Destroy.errcheck = check_void_done 442 443 las.LASVLR_GetUserId.argtypes = [ctypes.c_void_p] 444 las.LASVLR_GetUserId.errcheck = check_value_free 445 las.LASVLR_SetUserId.argtypes = [ctypes.c_void_p, ctypes.c_char_p] 446 las.LASVLR_SetUserId.errcheck = check_return 447 las.LASVLR_SetUserId.restype = ctypes.c_int 448 449 las.LASVLR_GetDescription.argtypes = [ctypes.c_void_p] 450 las.LASVLR_GetDescription.errcheck = check_value_free 451 las.LASVLR_SetDescription.argtypes = [ctypes.c_void_p, ctypes.c_char_p] 452 las.LASVLR_SetDescription.errcheck = check_return 453 las.LASVLR_SetDescription.restype = ctypes.c_int 454 455 las.LASVLR_GetRecordLength.argtypes = [ctypes.c_void_p] 456 las.LASVLR_GetRecordLength.errcheck = check_value 457 las.LASVLR_GetRecordLength.restype = ctypes.c_ushort 458 las.LASVLR_SetRecordLength.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 459 las.LASVLR_SetRecordLength.errcheck = check_return 460 las.LASVLR_SetRecordLength.restype = ctypes.c_int 461 462 las.LASVLR_GetRecordId.argtypes = [ctypes.c_void_p] 463 las.LASVLR_GetRecordId.errcheck = check_value 464 las.LASVLR_GetRecordId.restype = ctypes.c_ushort 465 las.LASVLR_SetRecordId.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 466 las.LASVLR_SetRecordId.errcheck = check_return 467 las.LASVLR_SetRecordId.restype = ctypes.c_int 468 469 las.LASVLR_GetReserved.argtypes = [ctypes.c_void_p] 470 las.LASVLR_GetReserved.errcheck = check_value 471 las.LASVLR_GetReserved.restype = ctypes.c_ushort 472 las.LASVLR_SetReserved.argtypes = [ctypes.c_void_p, ctypes.c_ushort] 473 las.LASVLR_SetReserved.errcheck = check_return 474 las.LASVLR_SetReserved.restype = ctypes.c_int 475
Note: See TracChangeset
for help on using the changeset viewer.
