Emulates ins/outs correctly for DOS programs.
[wine/multimedia.git] / include / imagelist.h
blobe20e4aba7f1d5665d823ce0c78de13cb9c6c30da
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 HBITMAP32 hbmImage;
15 HBITMAP32 hbmMask;
16 HBRUSH32 hbrBlend25;
17 HBRUSH32 hbrBlend50;
18 COLORREF clrBk;
19 COLORREF clrFg;
20 INT32 cInitial;
21 INT32 cGrow;
22 INT32 cMaxImage;
23 INT32 cCurImage;
24 INT32 cx;
25 INT32 cy;
26 UINT32 flags;
27 UINT32 uBitsPixel;
28 INT32 nOvlIdx[15];
31 typedef struct _IMAGELIST *HIMAGELIST;
33 #endif /* __WINE_IMAGELIST_H */