1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#ifndef _SUPPORT_H #define _SUPPORT_H #include <glib.h> #include <gdk/gdk.h> #include <glib/gi18n.h> #ifdef HAVE_CONFIG_H # include "config.h" #endif gchar *get_data_directory(); gchar *get_package_data_directory(); gchar *get_image_directory(); gchar *get_image_path(const gchar *image_name); gchar *get_program_name(); #endif |