repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 941017
[wine/gsoc-2012-control.git]
/
include
/
listbox.h
blob
22148ec8038abcefd708cece965b5af9475e0935
1
/*
2
* List Box definitions
3
*/
4
5
6
typedef
struct
tagLISTSTRUCT
{
7
DRAWITEMSTRUCT dis
;
8
HANDLE hMem
;
9
HANDLE hData
;
10
char
*
itemText
;
11
void
*
lpNext
;
12
}
LISTSTRUCT
;
13
typedef
LISTSTRUCT FAR
*
LPLISTSTRUCT
;
14
15
16
typedef
struct
tagHEADLIST
{
17
short
FirstVisible
;
18
short
ItemsCount
;
19
short
ItemsVisible
;
20
short
ColumnsVisible
;
21
short
ItemsPerColumn
;
22
short
ItemFocused
;
23
short
PrevFocused
;
24
short
StdItemHeight
;
25
short
ColumnsWidth
;
26
short
DrawCtlType
;
27
void
*
lpFirst
;
28
DWORD dwStyle
;
29
HWND hWndLogicParent
;
30
HFONT hFont
;
31
}
HEADLIST
;
32
typedef
HEADLIST FAR
*
LPHEADLIST
;
33
34