aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-25 21:35:36 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-25 21:35:36 +0000
commit0333b96fbfab20335b92ad7d8afbb9b60a6b8d4f (patch)
treeed21e78c822d1e84a34bcf8c46817e46d97e1fc4
parentcd016e69a9cc2378bf57f2435d38a4686fbb9cc2 (diff)
Include the header files required by new APIs in the plugin API table.
svn path=/trunk/; revision=8252
-rw-r--r--epan/plugins.c5
-rw-r--r--plugins/plugin_api.h5
2 files changed, 8 insertions, 2 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 53ab319e4d..807b83764a 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.75 2003/08/18 20:17:52 guy Exp $
+ * $Id: plugins.c,v 1.76 2003/08/25 21:35:35 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -67,6 +67,9 @@
#include "packet-tcp.h"
#include "tap.h"
#include "asn1.h"
+#include "packet-per.h"
+#include "packet-h225.h"
+#include "packet-h245.h"
#include "plugins/plugin_table.h"
static plugin_address_table_t patable = {
/* file generated by plugin_gen.py */
diff --git a/plugins/plugin_api.h b/plugins/plugin_api.h
index 6b480c4b91..3e4272b61e 100644
--- a/plugins/plugin_api.h
+++ b/plugins/plugin_api.h
@@ -1,7 +1,7 @@
/* plugin_api.h
* Routines for Ethereal plugins.
*
- * $Id: plugin_api.h,v 1.54 2003/07/18 03:01:34 guy Exp $
+ * $Id: plugin_api.h,v 1.55 2003/08/25 21:35:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -55,6 +55,9 @@
#include "packet-tcp.h"
#include "tap.h"
#include "asn1.h"
+#include "packet-per.h"
+#include "packet-h225.h"
+#include "packet-h245.h"
#include "epan/except.h"
#include "plugin_table.h"