L_DecompressBuffer
#include "l_bitmap.h"
L_LTFIL_API L_INT L_DecompressBuffer(hDecompress, pDecompressData)
L_HGLOBAL hDecompress; |
/* decompression handle */ |
pDECOMPRESSDATA pDecompressData; |
/* pointer to a structure */ |
This function should be called for each buffer, strip or tile of decompressed data.
Parameter |
Description |
hDecompress |
Handle that identifies the decompression process. |
pDecompressData |
Pointer to a structure that contains information about the decompression process. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
Note that you must call the L_StartDecompressBuffer function before using this function, and you must call the L_StopDecompressBuffer function to end the decompression process.
Required DLLs and Libraries
LTFIL For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Platforms
Windows 2000 / XP/Vista, Windows CE.
See Also
Functions: |
L_StartDecompressBuffer, L_StopDecompressBuffer, L_StartCompressBuffer, L_EndCompressBuffer |
Topics: |
|
|
Example
For an example, refer to L_StartDecompressBuffer.