summaryrefslogtreecommitdiff
path: root/src/core/logs.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-13 00:35:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-13 00:35:33 (GMT)
commita6975c1d754a1ba5bfb9e23f0b26692c746e6f9c (patch)
tree7ec962129ebbce6cd210b449443afc91ced72719 /src/core/logs.h
parent5adcf950f1f928c7127f2d694b52addf54cc04ca (diff)
Handled the logs from the GUI, the command line and the Python bindings.
Diffstat (limited to 'src/core/logs.h')
-rw-r--r--src/core/logs.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/core/logs.h b/src/core/logs.h
new file mode 100644
index 0000000..2199cc1
--- /dev/null
+++ b/src/core/logs.h
@@ -0,0 +1,60 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * logs.h - prototypes pour la diffusion de messages d'alerte ou informatifs
+ *
+ * Copyright (C) 2017 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _CORE_LOGS_H
+#define _CORE_LOGS_H
+
+
+#include <i18n.h>
+
+
+
+/* Type de messages disponibles */
+typedef enum _LogMessageType
+{
+ LMT_INFO, /* Information sur l'exécution */
+ LMT_PROCESS, /* Début de tâche quelconque */
+ LMT_WARNING, /* Avertissment à remonter */
+ LMT_ERROR, /* Erreur de traitement */
+ LMT_BAD_BINARY, /* Binaire malformé */
+
+ LMT_COUNT
+
+} LogMessageType;
+
+
+/* Fournit la verbosité des messages système. */
+LogMessageType get_log_verbosity(void);
+
+/* Définit la verbosité des messages système. */
+void set_log_verbosity(LogMessageType);
+
+/* Affiche un message dans le journal des messages système. */
+void log_simple_message(LogMessageType, const char *);
+
+/* Affiche un message dans le journal des messages système. */
+void log_variadic_message(LogMessageType, const char *, ...);
+
+
+
+#endif /* _CORE_LOGS_H */