summaryrefslogtreecommitdiff
path: root/src/core/paths.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-04-17 13:56:56 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-04-17 13:56:56 (GMT)
commit58afc7858cffe180bafbae306db6be66d313b74b (patch)
tree6ccba3064e1b1d49faf1099d3d6fe3c600192819 /src/core/paths.h
parentb25638b8b13ffa833414c6a7c48fffdac12eda61 (diff)
Remove hardcoded run paths from libraries.
Diffstat (limited to 'src/core/paths.h')
-rw-r--r--src/core/paths.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/paths.h b/src/core/paths.h
index e6ce61f..f56beb0 100644
--- a/src/core/paths.h
+++ b/src/core/paths.h
@@ -32,6 +32,16 @@ void register_new_prefix(const char *);
/* Fournit le répertoire réel correspondant à une cible. */
char *get_effective_directory(const char *);
+/* Listes de répertoires d'installation */
+typedef enum _TargetDirectoryType
+{
+ TDT_PLUGINS_LIB, /* Répertoire des extensions */
+
+} TargetDirectoryType;
+
+/* Fournit le répertoire réel correspondant à une cible. */
+char *get_effective_directory_new(TargetDirectoryType);
+
/* Trouve le chemin d'accès complet à un fichier d'image. */
char *find_pixmap_file(const char *);