summaryrefslogtreecommitdiff
path: root/plugins/pe/section.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-04-05 22:59:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-04-05 23:11:48 (GMT)
commitb0347ca45a08ac63bc6dd6f244b046c6d19a6cdd (patch)
tree9af1ec9901ddcf696bd3297633faf9fb46712396 /plugins/pe/section.h
parentcf0b5d5f07e8102f2c9a04012bf29cabda9d85e4 (diff)
Build a partial working support for the PE format.
Diffstat (limited to 'plugins/pe/section.h')
-rw-r--r--plugins/pe/section.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/pe/section.h b/plugins/pe/section.h
index e7c399b..2ac21d3 100644
--- a/plugins/pe/section.h
+++ b/plugins/pe/section.h
@@ -21,18 +21,18 @@
*/
-#ifndef _FORMAT_PE_SECTION_H
-#define _FORMAT_PE_SECTION_H
+#ifndef _PLUGINS_PE_SECTION_H
+#define _PLUGINS_PE_SECTION_H
-#include "pe.h"
+#include "format.h"
#include "pe_def.h"
/* Recherche une section donnée au sein de binaire par indice. */
-bool find_pe_section_by_index(const GPeFormat *, uint16_t, image_section_header *);
+image_section_header *read_all_pe_sections(const GPeFormat *, vmpa2t *);
-#endif /* _FORMAT_PE_SECTION_H */
+#endif /* _PLUGINS_PE_SECTION_H */