summaryrefslogtreecommitdiff
path: root/src/core/global.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-08-24 22:30:08 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-08-24 22:30:08 (GMT)
commitf505830e800e4061d6e57c2b0769f956e70a2d84 (patch)
tree4c41123d39586122b732defe0faad1d4158ec5a7 /src/core/global.h
parent70f5f1c083158ea01513bc07955d62b3b3f43795 (diff)
Load (some) core components again.
Diffstat (limited to 'src/core/global.h')
-rw-r--r--src/core/global.h25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/core/global.h b/src/core/global.h
index 0a9172b..61b7712 100644
--- a/src/core/global.h
+++ b/src/core/global.h
@@ -2,7 +2,7 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
* global.h - prototypes pour la conservation et l'accès aux variables globales
*
- * Copyright (C) 2017-2018 Cyrille Bagard
+ * Copyright (C) 2017-2024 Cyrille Bagard
*
* This file is part of Chrysalide.
*
@@ -25,6 +25,22 @@
#define _CORE_GLOBAL_H
+#include "../glibext/workqueue.h"
+
+
+
+/* Définit le gestionnaire de traitements parallèles courant. */
+void set_work_queue(/* __steal */GWorkQueue *);
+
+/* Fournit le gestionnaire de traitements parallèles courant. */
+GWorkQueue *get_work_queue(void);
+
+
+
+
+
+#if 0
+
#include <stdbool.h>
@@ -42,10 +58,10 @@ void set_batch_mode(void);
bool is_batch_mode(void);
/* Définit le gestionnaire de traitements parallèles courant. */
-void set_work_queue(GWorkQueue *);
+//void set_work_queue(GWorkQueue *);
/* Fournit le gestionnaire de traitements parallèles courant. */
-GWorkQueue *get_work_queue(void);
+//GWorkQueue *get_work_queue(void);
/* Définit l'adresse de l'explorateur de contenus courant. */
void set_current_content_explorer(GContentExplorer *);
@@ -78,5 +94,8 @@ typedef void (* current_project_change_cb) (GStudyProject *, bool);
void register_project_change_notification(current_project_change_cb);
+#endif
+
+
#endif /* _CORE_GLOBAL_H */