1 /* Utilities to ensure compatibility across multiple platforms. */
2 #ifndef COMPAT_H
3 #define COMPAT_H 1
4 
5 gchar          *get_data_dir(void);
6 gchar          *get_maps_dir(void);
7 gchar          *get_logo_dir(void);
8 gchar          *get_icon_dir(void);
9 gchar          *get_user_conf_dir(void);
10 gchar          *get_modules_dir(void);
11 gchar          *get_satdata_dir(void);
12 gchar          *get_trsp_dir(void);
13 gchar          *get_hwconf_dir(void);
14 gchar          *get_old_conf_dir(void);
15 gchar          *map_file_name(const gchar * map);
16 gchar          *logo_file_name(const gchar * logo);
17 gchar          *icon_file_name(const gchar * icon);
18 gchar          *data_file_name(const gchar * data);
19 gchar          *sat_file_name(const gchar * satfile);
20 gchar          *trsp_file_name(const gchar * trspfile);
21 gchar          *hw_file_name(const gchar * hwfile);
22 
23 gchar          *sat_file_name_from_catnum(guint catnum);
24 gchar          *sat_file_name_from_catnum_s(gchar * catnum);
25 
26 #endif
27