This function frees the memory associated with an image info context. Call this function when you have finished using the image info context for calls to fpGetOutputImageCount()
and fpGetOutputImageInfo()
(see fpGetOutputImageCount() and fpGetOutputImageInfo()).
BOOL pascal fpFreeImageInfos ( void* const pContext, void* const pImageInfos)
pContext
|
A pointer returned from fpInit() or fpInitWithLicenseData() and the pointer originally passed to fpGetOutputImageInfo() to create the image info context that you want to free. See fpInit() or fpInitWithLicenseData(), and fpGetOutputImageInfo(). |
pImageInfos
|
A pointer returned from fpGetOutputImageInfos() . See fpGetOutputImageInfos(). |
If the call is successful, the return value is TRUE
.
If the call is unsuccessful, the return value is FALSE
.
fpFreeImageInfos()
with pImageInfos()
set to NULL
. The function returns TRUE
in this case.fpFreeImageInfos()
before you call fpShutdown()
(see fpShutDown()).fpGetOutputImageCount()
, fpGetOutputImageInfo()
, and fpFreeImageInfos()
using an image info context pointer for which the associated system resources have already been successfully freed by using fpFreeImageInfos()
.
|