summaryrefslogtreecommitdiff
path: root/src/gui/core/global.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
commitf828d126a74facac145531822c6ea9c8259b50e0 (patch)
tree521bfa44de551f30934ee321339a7a87d12a3243 /src/gui/core/global.h
parente92c777c91612c8508d263645480c6c3889b679d (diff)
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'src/gui/core/global.h')
-rw-r--r--src/gui/core/global.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/gui/core/global.h b/src/gui/core/global.h
new file mode 100644
index 0000000..dfd5cc2
--- /dev/null
+++ b/src/gui/core/global.h
@@ -0,0 +1,40 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * global.h - prototypes pour la conservation de variables globales à vocation graphique
+ *
+ * Copyright (C) 2016 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * OpenIDA 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.
+ *
+ * OpenIDA 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 _GUI_CORE_GLOBAL_H
+#define _GUI_CORE_GLOBAL_H
+
+
+#include "../../gtkext/gtkstatusstack.h"
+
+
+
+/* Note l'adresse de la barre de statut principale. */
+void set_global_status(GtkStatusStack *);
+
+/* Fournit l'adresse de la barre de statut principale. */
+GtkStatusStack *get_global_status(void);
+
+
+
+#endif /* _GUI_CORE_GLOBAL_H */