diff options
author | rcyeske <rcyeske> | 2001-02-20 03:30:28 +0000 |
---|---|---|
committer | rcyeske <rcyeske> | 2001-02-20 03:30:28 +0000 |
commit | b04b541a3aaab9e5f0d36b88f97720f9c78a538f (patch) | |
tree | 57f7de7a40cf5504c0ed4b2396eff04689e52733 /src/actions.h | |
parent | d1676f8fd215f735623cea1c1d707a346e9b6390 (diff) | |
download | ratpoison-b04b541a3aaab9e5f0d36b88f97720f9c78a538f.zip |
removed key_actions table, replaced with set of functions
Diffstat (limited to 'src/actions.h')
-rw-r--r-- | src/actions.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/actions.h b/src/actions.h index 93287c6..bc1f410 100644 --- a/src/actions.h +++ b/src/actions.h @@ -39,7 +39,7 @@ user_command void bye(void *dummy); void spawn(void *data); -void command (void *data); +void command (char *data); void maximize (void *data); void cmd_newwm(void *which); @@ -62,6 +62,7 @@ void cmd_unimplemented (void *data); /* void cmd_xterm (void *data); */ -extern rp_action key_actions[]; +void initialize_default_keybindings (void); +char *find_keybinding (int keysym, int state); #endif /* ! _RATPOISON_ACTIONS_H */ |