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
/
scroll.h
1
/*
2
* Scroll Bar definitions
3
*/
4
5
6
typedef struct tagHEADSSCROLL {
7
short CurVal;
8
short MinVal;
9
short MaxVal;
10
short MaxPix;
11
short CurPix;
12
BOOL ThumbActive;
13
WORD Direction;
14
DWORD dwStyle;
15
HWND hWndUp;
16
HWND hWndDown;
17
} HEADSCROLL;
18
typedef HEADSCROLL FAR* LPHEADSCROLL;
19
20