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
Release 940505
[wine/multimedia.git]
/
include
/
icon.h
blob
4a38a60f5bfc8440e08206f46a2e4686f782ef6c
1
/*
2
* structure definitions for ICON
3
*
4
* Copyright Martin Ayotte, 1993
5
*
6
*/
7
8
9
typedef
struct
{
10
BYTE Width
;
11
BYTE Height
;
12
BYTE ColorCount
;
13
BYTE Reserved1
;
14
WORD Reserved2
;
15
WORD Reserved3
;
16
DWORD icoDIBSize
;
17
DWORD icoDIBOffset
;
18
}
ICONDESCRIP
;
19
20
typedef
struct
{
21
ICONDESCRIP descriptor
;
22
HBITMAP hBitmap
;
23
HBITMAP hBitMask
;
24
}
ICONALLOC
;
25
26