diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 08:02:04 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 08:02:04 +0100 |
commit | 6ee9f1345760f320dd76c713754ba2a70669bedd (patch) | |
tree | 20c0c6d05a1f80796fe2c9ee49cb537c5e23f132 /dwm.h | |
parent | 352cae4380713949d3800ebcda7aff3bb5ab9efc (diff) | |
download | dwm-6ee9f1345760f320dd76c713754ba2a70669bedd.tar.gz |
fixing missing extern declars in dwm.h for {de,at}tach()
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dwm.h b/dwm.h index 6fe9e15..a6af9ba 100644 --- a/dwm.h +++ b/dwm.h @@ -102,7 +102,9 @@ extern Layout *lt; extern Window root, barwin; /* client.c */ +extern void attach(Client *c); /* attaches c to global client list */ extern void configure(Client *c); /* send synthetic configure event */ +extern void detach(Client *c); /* detaches c from global client list */ extern void focus(Client *c); /* focus c, c may be NULL */ extern void killclient(Arg arg); /* kill c nicely */ extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ |