Separated stuff for shv background contextmenu to separate file.
[wine.git] / include / imagelist.h
blob9bc4cd034a2cd9d5f701eeec6a29e6298b284e56
1 /*
2 * ImageList definitions
4 * Copyright 1998 Eric Kohl
5 */
7 #ifndef __WINE_IMAGELIST_H
8 #define __WINE_IMAGELIST_H
10 #include "wingdi.h"
12 struct _IMAGELIST
14 HBITMAP hbmImage;
15 HBITMAP hbmMask;
16 HBRUSH hbrBlend25;
17 HBRUSH hbrBlend50;
18 COLORREF clrBk;
19 COLORREF clrFg;
20 INT cInitial;
21 INT cGrow;
22 INT cMaxImage;
23 INT cCurImage;
24 INT cx;
25 INT cy;
26 UINT flags;
27 UINT uBitsPixel;
28 INT nOvlIdx[15];
31 typedef struct _IMAGELIST *HIMAGELIST;
33 #endif /* __WINE_IMAGELIST_H */