summaryrefslogtreecommitdiff
path: root/src/core/paths.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-06-17 13:03:12 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-06-17 13:03:12 (GMT)
commit2cb3d9035ef9859570bf8facb1a2cc935743b0b6 (patch)
tree6ad51a7343ac133f6937228e91ca3401f9571324 /src/core/paths.h
parentd152af2b8883fb101cfbdc607601cb963f40db4a (diff)
Got access to external files thanks to new core functions.
Diffstat (limited to 'src/core/paths.h')
-rw-r--r--src/core/paths.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/core/paths.h b/src/core/paths.h
new file mode 100644
index 0000000..c16a278
--- /dev/null
+++ b/src/core/paths.h
@@ -0,0 +1,37 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * paths.h - prototypes pour la récupération de fichiers secondaires
+ *
+ * Copyright (C) 2018 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Chrysalide is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _CORE_PATHS_H
+#define _CORE_PATHS_H
+
+
+
+/* Trouve le chemin d'accès complet à un fichier d'image. */
+char *find_pixmap_file(const char *);
+
+/* Trouve le chemin d'accès complet à un fichier de greffon. */
+char *find_plugin_file(const char *, const char *);
+
+
+
+#endif /* _CORE_PATHS_H */