summaryrefslogtreecommitdiff
path: root/plugins/readdex/reader.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-03-13 14:22:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-03-13 14:24:36 (GMT)
commitbde67ccf58fc858d5d0db4929db149ea12f50f96 (patch)
tree665c778e15b65b615410564a3bd7c83f53810b17 /plugins/readdex/reader.h
parentda22d42c9644de808dfc3484352c444ee4176bee (diff)
Created a readelf-like information provider for Dex files.
Diffstat (limited to 'plugins/readdex/reader.h')
-rw-r--r--plugins/readdex/reader.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/readdex/reader.h b/plugins/readdex/reader.h
new file mode 100644
index 0000000..8cccced
--- /dev/null
+++ b/plugins/readdex/reader.h
@@ -0,0 +1,39 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * reader.h - prototypes pour l'interprétation des informations secondaires contenues dans un fichier DEX
+ *
+ * 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 _PLUGINS_READDEX_READER_H
+#define _PLUGINS_READDEX_READER_H
+
+
+#include <format/dex/dex.h>
+#include <plugins/plugin.h>
+#include <plugins/plugin-int.h>
+
+
+
+/* Etablit des symboles complémentaires dans un format DEX. */
+G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *, PluginAction, GBinFormat *);
+
+
+
+#endif /* _PLUGINS_READDEX_READER_H */