blob: 362ce4b2bb123a1cebb5e11010e773af2a166226 [file] [log] [blame]
/*
* ImageList definitions
*
* Copyright 1998 Eric Kohl
*/
#ifndef __WINE_IMAGELIST_H
#define __WINE_IMAGELIST_H
struct _IMAGELIST
{
HBITMAP32 hbmImage;
HBITMAP32 hbmMask;
HBRUSH32 hbrushBlend25;
HBRUSH32 hbrushBlend50;
COLORREF clrBk;
INT32 cInitial;
INT32 cGrow;
INT32 cMaxImage;
INT32 cCurImage;
INT32 cx;
INT32 cy;
UINT32 flags;
UINT32 uBitsPixel;
INT32 nOvlIdx[15];
};
typedef struct _IMAGELIST *HIMAGELIST;
#endif /* __WINE_IMAGELIST_H */