LBufferType (original) (raw)
Summary
Reserved for future use. Internal enumeration used to indicate which type of buffer is contained in the LBuffer class. This is used internally and currently, all buffers are allocated with GlobalAlloc.
Syntax
typedef enum LBufferType
{
LBUFFER_TYPE_HGLOBAL,
LBUFFER_TYPE_LOCALALLOC,
LBUFFER_TYPE_BUFFER,
} LBufferType;
Members
LBUFFER_TYPE_HGLOBAL
The memory was allocated with GlobalAlloc.
LBUFFER_TYPE_LOCALALLOC
The memory was allocated with a local function, such as malloc.
LBUFFER_TYPE_BUFFER
The buffer was allocated by LEADTOOLS. Free it by calling LBuffer::Free.
Comments
This enumeration is not used at the moment. Currently, all buffers are allocated with GlobalAlloc.
LEADTOOLS Raster Imaging C++ Class Library Help