about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/dwm.h b/dwm.h
index cf51c36..49aa126 100644
--- a/dwm.h
+++ b/dwm.h
@@ -68,7 +68,7 @@ struct Client {
 	Window trans;
 	Window title;
 	Client *next;
-	Client *prev;
+	Client *revert;
 };
 
 struct Key {
@@ -89,7 +89,7 @@ extern int tsel, screen, sx, sy, sw, sh, th;
 extern char stext[1024], *tags[TLast];
 
 extern DC dc;
-extern Client *cstart, *cend, *csel;
+extern Client *clients, *sel;
 
 /* client.c */
 extern void manage(Window w, XWindowAttributes *wa);
@@ -109,7 +109,9 @@ extern void prevc(Arg *arg);
 extern void max(Arg *arg);
 extern void floating(Arg *arg);
 extern void tiling(Arg *arg);
-void tag(Arg *arg);
+extern void tag(Arg *arg);
+extern void view(Arg *arg);
+extern void zoom(Arg *arg);
 extern void gravitate(Client *c, Bool invert);
 
 /* draw.c */
r Thomas E. Dickey <dickey@invisible-island.net> 1997-05-25 00:16:10 -0400 committer Thomas E. Dickey <dickey@invisible-island.net> 1997-05-25 00:16:10 -0400 snapshot of project "lynx", label v2-7-1ac_0-28' href='/ingrix/lynx-snapshots/commit/src/HTForms.h?id=945e8eb6bb07f64aaca42207af3311220ff2e4ba'>945e8eb6 ^
e087f6d4












c3ec4181 ^

e087f6d4


945e8eb6 ^


e087f6d4











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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112