summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch/raw.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-02-18 22:24:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-02-18 22:24:55 (GMT)
commitd6b2e6639698674cbdaf7dc2e5f5a637abcfadb0 (patch)
tree13394ab4695d8f4b60195961f24dd498c6bcbbe6 /plugins/pychrysalide/arch/raw.h
parent95e204291faa4800781d2f302c41f86a3f01851d (diff)
Relocated the raw instructions.
Diffstat (limited to 'plugins/pychrysalide/arch/raw.h')
-rw-r--r--plugins/pychrysalide/arch/raw.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/plugins/pychrysalide/arch/raw.h b/plugins/pychrysalide/arch/raw.h
deleted file mode 100644
index e05e773..0000000
--- a/plugins/pychrysalide/arch/raw.h
+++ /dev/null
@@ -1,45 +0,0 @@
-
-/* Chrysalide - Outil d'analyse de fichiers binaires
- * raw.h - prototypes pour l'équivalent Python du fichier "arch/raw.h"
- *
- * Copyright (C) 2018-2020 Cyrille Bagard
- *
- * This file is part of Chrysalide.
- *
- * Chrysalide 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.
- *
- * Chrysalide 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-
-#ifndef _PLUGINS_PYCHRYSALIDE_ARCH_RAW_H
-#define _PLUGINS_PYCHRYSALIDE_ARCH_RAW_H
-
-
-#include <Python.h>
-#include <stdbool.h>
-
-
-
-/* Fournit un accès à une définition de type à diffuser. */
-PyTypeObject *get_python_raw_instruction_type(void);
-
-/* Prend en charge l'objet 'pychrysalide.arch.RawInstruction'. */
-bool ensure_python_raw_instruction_is_registered(void);
-
-/* Tente de convertir en instruction brute. */
-int convert_to_raw_instruction(PyObject *, void *);
-
-
-
-#endif /* _PLUGINS_PYCHRYSALIDE_ARCH_RAW_H */