aboutsummaryrefslogtreecommitdiffstats
path: root/tap-camelsrt.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-10-04 07:18:58 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-10-04 07:18:58 +0000
commit7ecb3721a35e151b8d4d2c3e80feed27bfd9cc16 (patch)
tree16c7f06c6061aaa9bd469d05da6593967b4a4dfb /tap-camelsrt.c
parent4d1da73c6f210cd8e5d47ebe7798e1a10688c702 (diff)
Got rid of some errors but 1 remains:
libui.lib(camel_srt.obj) : error LNK2001: unresolved external symbol _camelSRTt pe_naming wireshark.exe : fatal error LNK1120: 1 unresolved externals NMAKE : fatal error U1077: 'link' : return code '0x460' Stop. svn path=/trunk/; revision=19424
Diffstat (limited to 'tap-camelsrt.c')
-rw-r--r--tap-camelsrt.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tap-camelsrt.c b/tap-camelsrt.c
index 25387022a7..85b634a558 100644
--- a/tap-camelsrt.c
+++ b/tap-camelsrt.c
@@ -60,9 +60,11 @@ struct camelsrt_t {
nstime_t delta_time[NB_CAMELSRT_CATEGORY][NUM_RAS_STATS];
};
-/* Check if we have to inhibit the display or not */
-extern gboolean gcamel_StatSRT;
-extern gboolean gtcap_StatSRT;
+/* Check if we have to inhibit the display or not
+ * cannot be static because it's exported in libwireshark.def
+ */
+gboolean gcamel_StatSRT;
+gboolean gtcap_StatSRT;
/* Reset the counter */
static void camelsrt_reset(void *phs)