-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwharfdata.h
More file actions
57 lines (50 loc) · 1.15 KB
/
wharfdata.h
File metadata and controls
57 lines (50 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef __WHARFDATA_H
#define __WHARFDATA_H
/* ----------------------------------------------------------------- */
typedef struct {
HWND Handle;
BOOL Visible;
RECT Position;
int Desk;
} windowType;
typedef struct {
int borderSize;
int pos;
int winListSize;
windowType *winList;
int trayIconSize;
int lm78Unit;
int lm78MaxCpu;
int lm78MaxMb;
int lm78Cpu;
int taskBar;
int msTaskBar;
int taskBarFore;
int taskBarBack;
int taskBarText;
int vwmVelocity;
int autoHideWharf;
int autoHideTaskbar;
int VWMDistance;
int autoHideDelay;
int showBeta;
int usClock;
int VWMNoGathering;
int VWMNoAuto;
int xmouseDelay;
int xmouseBringToTop;
char *pixmapDir;
char *defaultBmp;
int vwmBackColor;
int vwmSelBackColor;
int vwmForeColor;
int vwmBorderColor;
char *backsaver;
int taskBarFore2;
int stripBar;
char *lsPath;
} wharfDataType;
/* ----------------------------------------------------------------- */
const long magicDWord = 0x49474541;
/* ----------------------------------------------------------------- */
#endif