repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added strlwr.
[wine.git]
/
include
/
imagelist.h
blob
9bc4cd034a2cd9d5f701eeec6a29e6298b284e56
1
/*
2
* ImageList definitions
3
*
4
* Copyright 1998 Eric Kohl
5
*/
6
7
#ifndef __WINE_IMAGELIST_H
8
#define __WINE_IMAGELIST_H
9
10
#include
"wingdi.h"
11
12
struct
_IMAGELIST
13
{
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
];
29
};
30
31
typedef
struct
_IMAGELIST
*
HIMAGELIST
;
32
33
#endif
/* __WINE_IMAGELIST_H */
34