Implements a reload command

This commit is contained in:
bapt
2009-07-23 16:14:24 +00:00
committed by Michael Stapelberg
parent 9db8535b4c
commit 40750e227d
5 changed files with 69 additions and 19 deletions

View File

@ -15,6 +15,7 @@
#ifndef _CONFIG_H
#define _CONFIG_H
#include <stdbool.h>
#include "queue.h"
typedef struct Config Config;
@ -75,6 +76,7 @@ struct Config {
* configuration file.
*
*/
void load_configuration(xcb_connection_t *conn, const char *override_configfile);
void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
void grab_all_keys(xcb_connection_t *conn);
#endif