about summary refs log tree commit diff stats
path: root/src/config/files.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/files.h')
-rw-r--r--src/config/files.h22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/config/files.h b/src/config/files.h
index ff50cc1d..47a73b43 100644
--- a/src/config/files.h
+++ b/src/config/files.h
@@ -37,11 +37,27 @@
 
 #include <glib.h>
 
+#define FILE_PROFRC "profrc"
+#define FILE_ACCOUNTS "accounts"
+#define FILE_TLSCERTS "tlscerts"
+#define FILE_PLUGIN_SETTINGS "plugin_settings"
+#define FILE_PLUGIN_THEMES "plugin_themes"
+#define FILE_CAPSCACHE "capscache"
+
+#define DIR_THEMES "themes"
+#define DIR_ICONS "icons"
+#define DIR_SCRIPTS "scripts"
+#define DIR_CHATLOGS "chatlogs"
+#define DIR_OTR "otr"
+#define DIR_PGP "pgp"
+#define DIR_PLUGINS "plugins"
+
 void files_create_directories(void);
 
-gchar* files_get_inputrc_path(void);
+char* files_get_config_path(char *config_base);
+char* files_get_data_path(char *data_base);
 
-gchar* files_get_xdg_config_home(void);
-gchar* files_get_xdg_data_home(void);
+char* files_get_log_file(void);
+char* files_get_inputrc_file(void);
 
 #endif