taler_digitizer_util.h (856B)
1 /** 2 * @file taler-digitizer_util.h 3 * @brief Interface for common utility functions 4 * @author Reto Tellenbach 5 */ 6 #ifndef TALER_DIGITIZER_UTIL_H 7 #define TALER_DIGITIZER_UTIL_H 8 9 #include <gnunet/gnunet_util_lib.h> 10 11 /** 12 * Default project data. When shipping use a seperate os_installation.c which sets values at installation. 13 */ 14 const struct GNUNET_OS_ProjectData digitizer_pd = { 15 .base_config_varname = "TALER_DIGITIZER_PREFIX", 16 .bug_email = "taler@lists.gnu.org", 17 .homepage = "http://www.gnu.org/s/taler/", 18 .config_file = "taler-digitizer.conf", 19 .user_config_file = "~/.config/taler-digitizer.conf", 20 .version = "0.1.0", 21 .is_gnu = 0, 22 .gettext_domain = NULL, 23 .gettext_path = NULL, 24 }; 25 26 /** 27 * Return default project data. 28 */ 29 const struct GNUNET_OS_ProjectData * 30 TALER_DIGITIZER_project_data (void) 31 { 32 return &digitizer_pd; 33 } 34 35 36 37 #endif