LBitmapList::GetPalette
#include "ltwrappr.h"
LPRGBQUAD LBitmapList::GetPalette(L_VOID)
Gets a pointer to the global palette for the bitmap list items.
Returns
A pointer to the global palette for the bitmap list items.
GlobalPalette is the palette for images in a multipage GIF file.
This is used only if LBitmapList::HasGlobalPalette returns TRUE.
Comments
You should not attempt to free the memory pointed to by the pointer that this function returns.
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. | 
See Also
| Functions: | |
| Topics: | |
| 
 | 
Example
L_VOID TestGetPalette(L_TCHAR L_FAR * pszFileName)
{
   LBitmapList BitmapList;
   RGBQUAD *pPalette;
   BitmapList.Load (pszFileName);
   pPalette = BitmapList.GetPalette ();
   //...
}