summaryrefslogtreecommitdiff
path: root/src/analysis/disass/limit.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-07-14 10:53:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-07-14 10:53:27 (GMT)
commit9dad46d59fc491cac90795c418e3f973b85c2b4d (patch)
tree00b2618f9001d104490ab385dabb99c268237a3f /src/analysis/disass/limit.h
parent9371129c1b7aa830ed889abd4481cb505d90c4a7 (diff)
Limited all routines using code from binary.c.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@250 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/disass/limit.h')
-rw-r--r--src/analysis/disass/limit.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/analysis/disass/limit.h b/src/analysis/disass/limit.h
new file mode 100644
index 0000000..7ef9396
--- /dev/null
+++ b/src/analysis/disass/limit.h
@@ -0,0 +1,38 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * limit.h - prototypes pour la détermination des bornes des routines
+ *
+ * Copyright (C) 2012 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * 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 _ANALYSIS_DISASS_LIMIT_H
+#define _ANALYSIS_DISASS_LIMIT_H
+
+
+#include "../routine.h"
+#include "../../gtkext/gtkextstatusbar.h"
+
+
+
+/* S'assure que toutes les routines ont une taille définie. */
+void limit_all_routines(GArchInstruction *, GBinRoutine **, size_t, GtkExtStatusBar *, guint);
+
+
+
+#endif /* _ANALYSIS_DISASS_LIMIT_H */