static void PASCAL DeleteTempMap( );
Remarks
Called automatically by the CWinApp idle-time handler, DeleteTempMap deletes any temporary CImageList objects created by FromHandle, but does not destroy any handles (hImageList) temporarily associated with the ImageList objects.
Example
// The following example is correct:
CImageList::DeleteTempMap();
// The following example is incorrect.
// DeleteTempMap() is a static member and cannot be called
// within the scope of an instantiated CImageList object.
pImageList->DeleteTempMap(); // Causes compiler error