Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
Added tag 4.0 for changeset 018c38468422
[dwm.git]
/
dwm.h
diff --git
a/dwm.h
b/dwm.h
index
56b8433
..
9e4cf45
100644
(file)
--- a/
dwm.h
+++ b/
dwm.h
@@
-1,4
+1,5
@@
-/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
+/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
+ * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
* See LICENSE file for license details.
*
* dynamic window manager is designed like any other X client as well. It is
* See LICENSE file for license details.
*
* dynamic window manager is designed like any other X client as well. It is
@@
-47,9
+48,9
@@
struct Client {
int x, y, w, h;
int rx, ry, rw, rh; /* revert geometry */
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
int x, y, w, h;
int rx, ry, rw, rh; /* revert geometry */
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
- int minax, m
inay, maxax
, maxay;
+ int minax, m
axax, minay
, maxay;
long flags;
long flags;
- unsigned int border;
+ unsigned int border
, oldborder
;
Bool isbanned, isfixed, ismax, isfloating;
Bool *tags;
Client *next;
Bool isbanned, isfixed, ismax, isfloating;
Bool *tags;
Client *next;
@@
-130,7
+131,6
@@
void zoom(const char *arg); /* zooms the focused client to master area, arg is
/* main.c */
void quit(const char *arg); /* quit dwm nicely */
/* main.c */
void quit(const char *arg); /* quit dwm nicely */
-void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
/* tag.c */
int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
/* tag.c */
@@
-146,4
+146,3
@@
void view(const char *arg); /* views the tag with arg's index */
void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
void spawn(const char *arg); /* forks a new subprocess with arg's cmd */
void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
void spawn(const char *arg); /* forks a new subprocess with arg's cmd */
-