Release 980329
[wine/multimedia.git] / include / imagelist.h
blob362ce4b2bb123a1cebb5e11010e773af2a166226
1 /*
2 * ImageList definitions
4 * Copyright 1998 Eric Kohl
5 */
7 #ifndef __WINE_IMAGELIST_H
8 #define __WINE_IMAGELIST_H
10 struct _IMAGELIST
12 HBITMAP32 hbmImage;
13 HBITMAP32 hbmMask;
14 HBRUSH32 hbrushBlend25;
15 HBRUSH32 hbrushBlend50;
16 COLORREF clrBk;
17 INT32 cInitial;
18 INT32 cGrow;
19 INT32 cMaxImage;
20 INT32 cCurImage;
21 INT32 cx;
22 INT32 cy;
23 UINT32 flags;
24 UINT32 uBitsPixel;
25 INT32 nOvlIdx[15];
28 typedef struct _IMAGELIST *HIMAGELIST;
31 #endif /* __WINE_IMAGELIST_H */