summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan <okan>2015-03-29 00:21:05 +0000
committerokan <okan>2015-03-29 00:21:05 +0000
commitbc21e4aa37b36b486f7f6ddcb6050e2be93590c1 (patch)
treeda1b2c2fff822dbb33ab2c7b2692cb7599796d03 /calmwm.h
parent668da8493abd2abb6242a0a707e4d745c01b1031 (diff)
parent557cd382dcd973fd96605c3359e3d6dfa45a4fd9 (diff)
downloadcwm-bc21e4aa37b36b486f7f6ddcb6050e2be93590c1.tar.gz
cwm-bc21e4aa37b36b486f7f6ddcb6050e2be93590c1.tar.xz
cwm-bc21e4aa37b36b486f7f6ddcb6050e2be93590c1.zip
cvsimport
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/calmwm.h b/calmwm.h
index b56a9d7..7652182 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -103,6 +103,7 @@ size_t strlcpy(char *, const char *, size_t);
 #define CWM_NOGAP		0x0002
 
 #define CWM_WIN			0x0001
+#define CWM_CMD			0x0002
 
 #define CWM_QUIT		0x0000
 #define CWM_RUNNING		0x0001
@@ -271,7 +272,6 @@ struct binding {
 	unsigned int		 modmask;
 	union press		 press;
 	int			 flags;
-	int			 argtype;
 };
 TAILQ_HEAD(keybinding_q, binding);
 TAILQ_HEAD(mousebinding_q, binding);
@@ -578,6 +578,7 @@ void			 u_spawn(char *);
 
 void			*xcalloc(size_t, size_t);
 void			*xmalloc(size_t);
+void			*xreallocarray(void *, size_t, size_t);
 char			*xstrdup(const char *);
 int			 xasprintf(char **, const char *, ...)
 			    __attribute__((__format__ (printf, 2, 3)))