summaryrefslogtreecommitdiff
path: root/src/format/pe/e_pe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/pe/e_pe.h')
-rw-r--r--src/format/pe/e_pe.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/format/pe/e_pe.h b/src/format/pe/e_pe.h
new file mode 100644
index 0000000..54820e2
--- /dev/null
+++ b/src/format/pe/e_pe.h
@@ -0,0 +1,47 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * e_pe.h - prototypes pour le support du format Portable Executable
+ *
+ * Copyright (C) 2008 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 _FORMAT_PE_E_PE_H
+#define _FORMAT_PE_E_PE_H
+
+
+#include "../exe_format.h"
+
+
+
+/* Description du format Pe */
+typedef struct _pe_format pe_format;
+
+
+/* Indique si le format peut ĂȘtre pris en charge ici. */
+bool pe_is_matching(const uint8_t *, off_t);
+
+/* Prend en charge une nouvelle classe PE. */
+exe_format *load_pe(const uint8_t *, off_t);
+
+/* Efface la prise en charge une nouvelle classe PE. */
+void unload_pe(pe_format *);
+
+
+
+#endif /* _FORMAT_PE_E_PE_H */