summaryrefslogtreecommitdiff
path: root/src/params.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-07-10 14:47:37 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-07-10 14:47:37 (GMT)
commitdb863244b804cbf4c06399f7c6f8241d91c9ee9b (patch)
treeda7cc911b0f10c5122536271235ab68f2202804a /src/params.h
parente8aa314462196cc9e8461ae23eb13f8bffcc983f (diff)
Fully rewritten the core configuration system.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@381 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/params.h')
-rw-r--r--src/params.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/params.h b/src/params.h
deleted file mode 100644
index 47c822d..0000000
--- a/src/params.h
+++ /dev/null
@@ -1,61 +0,0 @@
-
-/* Chrysalide - Outil d'analyse de fichiers binaires
- * params.h - prototypes pour les éléments de la configuration principale
- *
- * Copyright (C) 2009-2012 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 _PARAMS_H
-#define _PARAMS_H
-
-
-#include "configuration.h"
-
-
-#ifndef NULL
-# define NULL ((void *)0)
-#endif
-
-
-
-/* Eléments de la configuration principale */
-
-typedef enum _MainParamType
-{
- MPT_LAST_PROJECT, /* Dernier projet ouvert */
- MPT_ELLIPSIS_HEADER, /* Titre supérieur des panneaux*/
- MPT_ELLIPSIS_TAB, /* Titre inférieur des panneaux*/
-
- MPT_AUTO_SAVE, /* Sauvegarde automatique ? */
-
- MPT_COUNT
-
-} MainParamType;
-
-
-#define set_main_configuration(cfg) _get_main_configuration(cfg)
-#define get_main_configuration() _get_main_configuration(NULL)
-
-
-/* Fournit un lien vers la configuration principale. */
-configuration *_get_main_configuration(configuration *);
-
-
-
-#endif /* _PARAMS_H */