summaryrefslogtreecommitdiff
path: root/plugins/pe/symbols.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-01-17 22:31:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-04-05 23:00:11 (GMT)
commite35215675101a4a5b59fe080fcb6b2609daa6cd3 (patch)
tree60dddfb275fe80e79a16fc65811b49229e2d962f /plugins/pe/symbols.h
parent636289c5397a81772a994fc5272d1fc0700a8026 (diff)
Moved PE code with its history.
Diffstat (limited to 'plugins/pe/symbols.h')
-rw-r--r--plugins/pe/symbols.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/pe/symbols.h b/plugins/pe/symbols.h
new file mode 100644
index 0000000..7581152
--- /dev/null
+++ b/plugins/pe/symbols.h
@@ -0,0 +1,36 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * symbols.h - prototypes pour la gestion des symboles d'un PE
+ *
+ * Copyright (C) 2010-2017 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 Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _FORMAT_PE_SYMBOLS_H
+#define _FORMAT_PE_SYMBOLS_H
+
+
+#include "pe.h"
+
+
+/* Charge en mémoire la liste humaine des symboles. */
+bool load_pe_symbols(GPeFormat *);
+
+
+
+#endif /* _FORMAT_PE_SYMBOLS_H */