summaryrefslogtreecommitdiff
path: root/epan/dwarf.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-10-23 01:36:49 +0000
committerEvan Huus <eapache@gmail.com>2013-10-23 01:36:49 +0000
commit328a05630c1c29782e15e1d02277b2dc64931c3c (patch)
tree33e8b17d2d488a0f6feb821404c9d0bfa0226c73 /epan/dwarf.h
parentcbd3194bcf87f2e5146343170b4a595ace599ff1 (diff)
downloadwireshark-328a05630c1c29782e15e1d02277b2dc64931c3c.tar.gz
From Michal Labedzki via
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8818 Add support for dissection ELF files. It opens as a "capture" file via wiretap at the moment for simplicity's sake, but the intention is eventually to have this (and other file types we dissect) open through some other program sharing much of the libwireshark infrastructure. svn path=/trunk/; revision=52775
Diffstat (limited to 'epan/dwarf.h')
-rw-r--r--epan/dwarf.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/epan/dwarf.h b/epan/dwarf.h
new file mode 100644
index 0000000000..c8ecb5f54a
--- /dev/null
+++ b/epan/dwarf.h
@@ -0,0 +1,9 @@
+#ifndef __DWARF_H__
+#define __DWARF_H__
+
+#include <glib.h>
+
+gint dissect_uleb128(tvbuff_t *tvb, gint offset, guint64 *value);
+gint dissect_leb128(tvbuff_t *tvb, gint offset, gint64 *value);
+
+#endif /* __DWARF_H__ */ \ No newline at end of file