aboutsummaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-11 18:12:57 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-11 18:12:57 +0000
commit8142e5a38927fc140802c714123572d05bd99cc8 (patch)
tree81beefc24c9a354c265744c3684d09d7289860e2 /action.h
parent072fe88a5d2be716825f25c5819c2ff057b48a11 (diff)
downloaddzen-8142e5a38927fc140802c714123572d05bd99cc8.tar.gz
dzen-8142e5a38927fc140802c714123572d05bd99cc8.zip
get rid of exposetitle and exposeslave actions,
we handle those without wrapper functions git-svn-id: http://dzen.googlecode.com/svn/trunk@82 f2baff5b-bf2c-0410-a398-912abdc3d8b2
Diffstat (limited to 'action.h')
-rw-r--r--action.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/action.h b/action.h
index f12fc34..0d7135c 100644
--- a/action.h
+++ b/action.h
@@ -1,8 +1,8 @@
/*
-* (C)opyright MMVII Robert Manea <rob dot manea at gmail dot com>
-* See LICENSE file for license details.
-*
-*/
+ * (C)opyright MMVII Robert Manea <rob dot manea at gmail dot com>
+ * See LICENSE file for license details.
+ *
+ */
#define MAXEVENTS 32
#define MAXACTIONS 64
@@ -13,8 +13,6 @@ typedef struct AS As;
typedef struct EV Ev;
enum ev_id {
- /* internal events, should not be used by the user */
- exposetitle, exposeslave,
/* startup, exit */
onstart, onexit,
/* mouse buttons */
@@ -55,8 +53,6 @@ void fill_ev_table(char *);
void free_ev_table(void);
/* action handlers */
-int a_exposetitle(char **);
-int a_exposeslave(char **);
int a_print(char **);
int a_exit(char **);
int a_exec(char **);