mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:13:48 +01:00
5e4d584382
Conflicts: Makefile config.c config.h document.c ft/djvu/Makefile ft/pdf-mupdf/Makefile ft/pdf-poppler/Makefile render.c zathura.c
26 lines
522 B
C
26 lines
522 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define GLOBAL_RC "/etc/zathurarc"
|
|
#define ZATHURA_RC "zathurarc"
|
|
|
|
#include "zathura.h"
|
|
|
|
/**
|
|
* This function loads the default values of the configuration
|
|
*
|
|
* @param zathura the zathura session
|
|
*/
|
|
void config_load_default(zathura_t* zathura);
|
|
|
|
/**
|
|
* Loads and evaluates a configuration file
|
|
*
|
|
* @param path Path to the configuration file
|
|
*/
|
|
void config_load_file(zathura_t* zathura, char* path);
|
|
|
|
#endif // CONFIG_H
|