diff options
-rw-r--r-- | plugins/pychrysalide/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/pychrysalide/core.c (renamed from plugins/pychrysalide/pychrysa.c) | 4 | ||||
-rw-r--r-- | plugins/pychrysalide/core.h (renamed from plugins/pychrysalide/pychrysa.h) | 8 | ||||
-rw-r--r-- | plugins/pychrysalide/core/logs.c | 2 | ||||
-rw-r--r-- | plugins/pychrysalide/core/processors.c | 2 | ||||
-rw-r--r-- | plugins/pychrysalide/gui/item.c | 2 | ||||
-rw-r--r-- | plugins/pychrysalide/plugin.c | 2 |
7 files changed, 11 insertions, 11 deletions
diff --git a/plugins/pychrysalide/Makefile.am b/plugins/pychrysalide/Makefile.am index 5d6c3e6..530a889 100644 --- a/plugins/pychrysalide/Makefile.am +++ b/plugins/pychrysalide/Makefile.am @@ -8,9 +8,9 @@ pychrysalide_la_SOURCES = \ access.h access.c \ constants.h constants.c \ constval.h constval.c \ + core.h core.c \ helpers.h helpers.c \ plugin.h plugin.c \ - pychrysa.h pychrysa.c \ star.h star.c \ strenum.h strenum.c \ struct.h struct.c \ diff --git a/plugins/pychrysalide/pychrysa.c b/plugins/pychrysalide/core.c index d1958ee..fad21bf 100644 --- a/plugins/pychrysalide/pychrysa.c +++ b/plugins/pychrysalide/core.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * pychrysa.c - plugin permettant des extensions en Python + * core.c - plugin permettant des extensions en Python * * Copyright (C) 2018-2019 Cyrille Bagard * @@ -21,7 +21,7 @@ */ -#include "pychrysa.h" +#include "core.h" #include <assert.h> diff --git a/plugins/pychrysalide/pychrysa.h b/plugins/pychrysalide/core.h index a6d4bb1..368a7c3 100644 --- a/plugins/pychrysalide/pychrysa.h +++ b/plugins/pychrysalide/core.h @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * pychrysa.h - prototypes pour le plugin permettant des extensions en Python + * core.h - prototypes pour le plugin permettant des extensions en Python * * Copyright (C) 2018-2019 Cyrille Bagard * @@ -21,8 +21,8 @@ */ -#ifndef _PLUGINS_PYCHRYSALIDE_PYCHRYSA_H -#define _PLUGINS_PYCHRYSALIDE_PYCHRYSA_H +#ifndef _PLUGINS_PYCHRYSALIDE_CORE_H +#define _PLUGINS_PYCHRYSALIDE_CORE_H /** @@ -60,4 +60,4 @@ void log_pychrysalide_exception(const char *, ...); -#endif /* _PLUGINS_PYCHRYSALIDE_PYCHRYSA_H */ +#endif /* _PLUGINS_PYCHRYSALIDE_CORE_H */ diff --git a/plugins/pychrysalide/core/logs.c b/plugins/pychrysalide/core/logs.c index 4e0bc7b..6d88693 100644 --- a/plugins/pychrysalide/core/logs.c +++ b/plugins/pychrysalide/core/logs.c @@ -34,8 +34,8 @@ #include "constants.h" #include "../access.h" +#include "../core.h" #include "../helpers.h" -#include "../pychrysa.h" diff --git a/plugins/pychrysalide/core/processors.c b/plugins/pychrysalide/core/processors.c index b1f85bc..fb867db 100644 --- a/plugins/pychrysalide/core/processors.c +++ b/plugins/pychrysalide/core/processors.c @@ -35,8 +35,8 @@ #include "../access.h" +#include "../core.h" #include "../helpers.h" -#include "../pychrysa.h" #include "../arch/processor.h" diff --git a/plugins/pychrysalide/gui/item.c b/plugins/pychrysalide/gui/item.c index 45190e4..2e32167 100644 --- a/plugins/pychrysalide/gui/item.c +++ b/plugins/pychrysalide/gui/item.c @@ -33,8 +33,8 @@ #include "../access.h" +#include "../core.h" #include "../helpers.h" -#include "../pychrysa.h" #include "../analysis/binary.h" #include "../gtkext/displaypanel.h" diff --git a/plugins/pychrysalide/plugin.c b/plugins/pychrysalide/plugin.c index 77647b5..463fece 100644 --- a/plugins/pychrysalide/plugin.c +++ b/plugins/pychrysalide/plugin.c @@ -38,8 +38,8 @@ #include "access.h" #include "constants.h" +#include "core.h" #include "helpers.h" -#include "pychrysa.h" #include "core/constants.h" |