summaryrefslogtreecommitdiff
path: root/c/kbind.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 07:54:23 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 07:54:23 +0000
commita648c05a7a2608e7e909317f5afe8427a0ea0d68 (patch)
tree9a8355e87192adeec50ee7eaff227decc8af8ffd /c/kbind.h
parent474f689132d906a553bdc695d3c179652cbe8c53 (diff)
kill the c dir
Diffstat (limited to 'c/kbind.h')
-rw-r--r--c/kbind.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/c/kbind.h b/c/kbind.h
deleted file mode 100644
index 3a584b79..00000000
--- a/c/kbind.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __kbind_h
-#define __kbind_h
-
-#include <glib.h>
-
-void kbind_startup();
-void kbind_shutdown();
-
-/*! Adds a new key binding
- A binding will fail to be added if the binding already exists (as part of
- a chain or not), or if any of the strings in the keylist are invalid.
- @return TRUE if the binding could be added; FALSE if it could not.
-*/
-gboolean kbind_add(GList *keylist);
-void kbind_clearall();
-
-guint kbind_translate_modifier(char *str);
-
-void kbind_fire(guint state, guint key, gboolean press);
-
-gboolean kbind_grab_keyboard(gboolean grab);
-
-#endif