repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed SetFocus that was broken when moved to x11drv.
[wine/multimedia.git]
/
include
/
imagelist.h
blob
11467df5007e0083e123b80090a4a54237d94477
1
/*
2
* ImageList definitions
3
*
4
* Copyright 1998 Eric Kohl
5
*/
6
7
#ifndef __WINE_IMAGELIST_H
8
#define __WINE_IMAGELIST_H
9
10
struct
_IMAGELIST
11
{
12
HBITMAP32 hbmImage
;
13
HBITMAP32 hbmMask
;
14
HBRUSH32 hbrBlend25
;
15
HBRUSH32 hbrBlend50
;
16
COLORREF clrBk
;
17
COLORREF clrFg
;
18
INT32 cInitial
;
19
INT32 cGrow
;
20
INT32 cMaxImage
;
21
INT32 cCurImage
;
22
INT32 cx
;
23
INT32 cy
;
24
UINT32 flags
;
25
UINT32 uBitsPixel
;
26
INT32 nOvlIdx
[
15
];
27
};
28
29
typedef
struct
_IMAGELIST
*
HIMAGELIST
;
30
31
#endif
/* __WINE_IMAGELIST_H */
32