aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-09-28 03:16:29 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-09-28 03:16:29 +0000
commitfd46811150e311634ff25125ef16d3caf94fd4e9 (patch)
treeccf03ab311c3d67e880750071dcba5cb31d73e42 /epan/epan.h
parente99817ebfbedb3e8983489c066023dd6c05114c1 (diff)
More EPAN-related code movements. Get rid of usage of #include "globals.h"
and #include "util.h" from epan code. Move get_home_dir() into epan/filesystem.c as it's used by plugins.c. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2461 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 87463449ea..649627c44e 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -6,6 +6,7 @@
#ifndef EPAN_H
+#include <glib.h>
void epan_init(void);
void epan_cleanup(void);
@@ -46,4 +47,9 @@ epan_dissect_new(epan_t*, guint8* data, guint len, guint32 wtap_encap,
void
epan_dissect_free(epan_t*, epan_dissect_t*);
+/* Should this be ".libepan"? For backwards-compatibility, I'll keep
+ * it ".ethereal" for now.
+ */
+#define PF_DIR ".ethereal"
+
#endif /* EPAN_H */