summaryrefslogtreecommitdiff
path: root/src/format/debuggable-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-03-14 22:18:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-03-14 22:18:27 (GMT)
commitfab9d7cd46922abea7d94f36dcd4630cdf3f4719 (patch)
treead41bb921db17631104a069e4df64fb4fc5ccfc1 /src/format/debuggable-int.h
parent8d8e5c02096f59a7227308a591fc5050ea5d92ff (diff)
Improved the basic support of Dwarf information.
Diffstat (limited to 'src/format/debuggable-int.h')
-rw-r--r--src/format/debuggable-int.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/format/debuggable-int.h b/src/format/debuggable-int.h
index 855a7bf..1fbe4c3 100644
--- a/src/format/debuggable-int.h
+++ b/src/format/debuggable-int.h
@@ -29,6 +29,7 @@
#include "format-int.h"
+#include "executable.h"
@@ -37,6 +38,8 @@ struct _GDbgFormat
{
GBinFormat parent; /* A laisser en premier */
+ GExeFormat *executable; /* Binaire principal attaché */
+
};
/* Format de débogage générique (classe) */
@@ -47,5 +50,9 @@ struct _GDbgFormatClass
};
+/* Associe officiellement des formats exécutable et de débogage. */
+void g_debuggable_format_attach_executable(GDbgFormat *, GExeFormat *);
+
+
#endif /* _FORMAT_DEBUGGABLE_INT_H */