se agradece la respuesta, pero excede mis alcances de manejo..
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitar
size_t aP_depack( const void *source,
void *destination );
CitarDecompresses the compressed data from source[] into destination[].
The destination[] buffer must be large enough to hold the decompressed data.
Parameters:
source - pointer to the compressed data.
destination - pointer to where the decompressed data should be stored.
Returns:
the length of the decompressed data, or APLIB_ERROR on error.
Note:
This function is not included in the libraries, but is available in src/c/depack.c. aP_depack_asm_fast can be used instead.
CitarFor C/C++ you simply include aplib.h and link with the appropriate library for your compiler. If you only need to decompress data, or if you modify the decompression code, you can compile and link with one of the decompression implementations in the src folder.
For other languages you can either check if there is a useable example, or use the DLL version. Most linkers allow calling C functions in an external library, so usually there is a way to use one of the libraries.