summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Makefile.am1
-rw-r--r--src/core/core.c1
-rw-r--r--src/core/nox.c62
-rw-r--r--src/core/nox.h37
4 files changed, 101 insertions, 0 deletions
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index de34d03..e1e3c4e 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -18,6 +18,7 @@ libcore4_la_SOURCES = \
core.h core.c \
global.h global.c \
logs.h logs.c \
+ nox.h nox.c \
nproc.h nproc.c \
paths.h paths.c
diff --git a/src/core/core.c b/src/core/core.c
index 1f40cb3..9514ee1 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -32,6 +32,7 @@
static AvailableCoreComponent __loaded = ACC_NONE;
+
/******************************************************************************
* *
* Paramètres : flags = liste d'éléments à charger. *
diff --git a/src/core/nox.c b/src/core/nox.c
new file mode 100644
index 0000000..ccf9de2
--- /dev/null
+++ b/src/core/nox.c
@@ -0,0 +1,62 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * nox.c - indication de présence ou d'absence de support graphique
+ *
+ * Copyright (C) 2024 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/>.
+ */
+
+
+#include "nox.h"
+
+
+#include <stddef.h>
+
+
+#include "../common/compiler.h"
+
+
+
+/* Indique la présence ou l'absence d'un affichage graphique. */
+__weak bool _run_in_nox_mode(void);
+
+
+
+/******************************************************************************
+* *
+* Paramètres : - *
+* *
+* Description : Indique la présence ou l'absence d'un affichage graphique. *
+* *
+* Retour : Statut à transmettre. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+bool run_in_nox_mode(void)
+{
+ bool result; /* Statut à retournr */
+
+ if (_run_in_nox_mode == NULL)
+ result = true;
+ else
+ result = _run_in_nox_mode();
+
+ return result;
+
+}
diff --git a/src/core/nox.h b/src/core/nox.h
new file mode 100644
index 0000000..c2c225d
--- /dev/null
+++ b/src/core/nox.h
@@ -0,0 +1,37 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * nox.h - prototypes pour l'indication de présence ou d'absence de support graphique
+ *
+ * Copyright (C) 2024 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_NOX_H
+#define _CORE_NOX_H
+
+
+#include <stdbool.h>
+
+
+
+/* Indique la présence ou l'absence d'un affichage graphique. */
+bool run_in_nox_mode(void);
+
+
+
+#endif /* _CORE_NOX_H */