summaryrefslogtreecommitdiff
path: root/src/format/pe/symbols.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-01-03 16:34:24 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-04-05 23:00:11 (GMT)
commit636289c5397a81772a994fc5272d1fc0700a8026 (patch)
tree2b615ea5159d0eaac84dbc64d63d8c30aa05bc83 /src/format/pe/symbols.h
parente6ff9a1fa72902f86a05983a389da8a3dff7709d (diff)
Restored raw support for the PE file format.
Diffstat (limited to 'src/format/pe/symbols.h')
-rw-r--r--src/format/pe/symbols.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/format/pe/symbols.h b/src/format/pe/symbols.h
new file mode 100644
index 0000000..7581152
--- /dev/null
+++ b/src/format/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 */