summaryrefslogtreecommitdiff
path: root/openbox/config.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 19:18:21 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 19:18:21 +0000
commit1045079482453424f8320de99639390e3020eb72 (patch)
treeb15a4e7f21b4f21f668beb780127226f216d3e56 /openbox/config.h
parent9ea78a4eb0255e8cca6258e5ceb4bfd3e9e9d59e (diff)
adjust for changes to the parsing api.
split the menu into its own file.
Diffstat (limited to 'openbox/config.h')
-rw-r--r--openbox/config.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/openbox/config.h b/openbox/config.h
index fe4fb605..ab1b7493 100644
--- a/openbox/config.h
+++ b/openbox/config.h
@@ -6,6 +6,8 @@
#include <glib.h>
+struct _ObParseInst;
+
/*! Should new windows be focused */
extern gboolean config_focus_new;
/*! Focus windows when the mouse enters them */
@@ -65,7 +67,10 @@ extern gint config_mouse_threshold;
double-click */
extern gint config_mouse_dclicktime;
-void config_startup();
+/*! User-specified path to the menu file */
+extern gchar *config_menu_path;
+
+void config_startup(struct _ObParseInst *i);
void config_shutdown();
#endif