2010-11-10 20:31:15 +01:00
|
|
|
/* See LICENSE file for license and copyright information */
|
2010-11-10 20:47:53 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2011-04-01 09:55:37 +02:00
|
|
|
#define GLOBAL_RC "/etc/zathurarc"
|
|
|
|
#define ZATHURA_RC "zathurarc"
|
|
|
|
#define CONFIG_DIR "~/.config/zathura"
|
|
|
|
|
2011-02-08 07:51:53 +01:00
|
|
|
/**
|
|
|
|
* This function loads the default values of the configuration
|
|
|
|
*/
|
2011-01-24 09:40:05 +01:00
|
|
|
void config_load_default(void);
|
2010-11-12 13:48:18 +01:00
|
|
|
|
2011-04-01 09:55:37 +02:00
|
|
|
/**
|
|
|
|
* Loads and evaluates a configuration file
|
|
|
|
*
|
|
|
|
* @param path Path to the configuration file
|
|
|
|
*/
|
|
|
|
void config_load_file(char* path);
|
|
|
|
|
2010-11-10 20:47:53 +01:00
|
|
|
#endif // CONFIG_H
|