41 #include <pcl/pcl_macros.h> 64 PCL_EXPORTS
unsigned int 65 lzfCompress (
const void *
const in_data,
unsigned int in_len,
66 void *out_data,
unsigned int out_len);
86 PCL_EXPORTS
unsigned int 87 lzfDecompress (
const void *
const in_data,
unsigned int in_len,
88 void *out_data,
unsigned int out_len);
This file defines compatibility wrappers for low level I/O functions.
PCL_EXPORTS unsigned int lzfCompress(const void *const in_data, unsigned int in_len, void *out_data, unsigned int out_len)
Compress in_len bytes stored at the memory block starting at in_data and write the result to out_data...
PCL_EXPORTS unsigned int lzfDecompress(const void *const in_data, unsigned int in_len, void *out_data, unsigned int out_len)
Decompress data compressed with the lzfCompress function and stored at location in_data and length in...