aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-09-28 03:16:29 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-09-28 03:16:29 +0000
commit9d9850f209ff7b5f350c7e83719eebaa76a72edd (patch)
treeccf03ab311c3d67e880750071dcba5cb31d73e42 /epan/epan.h
parentcba2930d6bb7e8cf2b0c03d14203624b56460835 (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. svn path=/trunk/; revision=2461
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 */