#include "BIGIF.H"
BOOL CALLBACK CloseGifFile(GIFFILE hChain)
Description
Invalidates handle hChain and frees all the inner structures belonging to it. The related GIF image chain will disappear. Actually this is the only way to free all the associated structures, so don’t forget to call this function after you have finished working with the image referred by hChain.
Parameters
|
GIFFILE |
hChain |
Image chain handle |
Return values
True on success, false if fails. It is very improbable that the function will fail, because it simply frees the inner structures associated to handle hChain.
Programming notes
After the call, the image chain handle hChain becomes invalid.
Requirements
Code example
None at present.