diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) | 
| commit | f828d126a74facac145531822c6ea9c8259b50e0 (patch) | |
| tree | 521bfa44de551f30934ee321339a7a87d12a3243 /src/gui/core/global.c | |
| parent | e92c777c91612c8508d263645480c6c3889b679d (diff) | |
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'src/gui/core/global.c')
| -rw-r--r-- | src/gui/core/global.c | 68 | 
1 files changed, 68 insertions, 0 deletions
diff --git a/src/gui/core/global.c b/src/gui/core/global.c new file mode 100644 index 0000000..10db31a --- /dev/null +++ b/src/gui/core/global.c @@ -0,0 +1,68 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * global.c - 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/>. + */ + + +#include "global.h" + + + +/* Barre de statut principale */ +static GtkStatusStack *_status = NULL; + + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : status  = barre de statut à tenir informée.                  * +*                                                                             * +*  Description : Note l'adresse de la barre de statut principale.             * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +void set_global_status(GtkStatusStack *status) +{ +    _status = status; + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : -                                                            * +*                                                                             * +*  Description : Fournit l'adresse de la barre de statut principale.          * +*                                                                             * +*  Retour      : barre de statut à tenir informée.                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +GtkStatusStack *get_global_status(void) +{ +    return _status; + +}  | 
