projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 0.6
[wine]
/
include
/
icon.h
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