fixing missing extern declars in dwm.h for {de,at}tach() 6ee9f134
Anselm R. Garbe · 2007-02-22 08:02 1 file(s) · +2 −0
dwm.h +2 −0
102 102
extern Window root, barwin;
103 103
104 104
/* client.c */
105 +
extern void attach(Client *c);			/* attaches c to global client list */
105 106
extern void configure(Client *c);		/* send synthetic configure event */
107 +
extern void detach(Client *c);			/* detaches c from global client list */
106 108
extern void focus(Client *c);			/* focus c, c may be NULL */
107 109
extern void killclient(Arg arg);		/* kill c nicely */
108 110
extern void manage(Window w, XWindowAttributes *wa);	/* manage new client */