aboutsummaryrefslogtreecommitdiffstats
path: root/epan/req_resp_hdrs.h
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2013-03-01 23:53:11 +0000
committerBalint Reczey <balint@balintreczey.hu>2013-03-01 23:53:11 +0000
commit1ebdb2e521ca0cbd7aeebd1c89b8a5cf6a4cc322 (patch)
treed6dde0ea7b6e6e15cc2c51a5f478fb85965b9720 /epan/req_resp_hdrs.h
parent0b8d70bfb715bc3d89b6dfae86fc79d7c4387f02 (diff)
Export libwireshark symbols using WS_DLL_PUBLIC define
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
Diffstat (limited to 'epan/req_resp_hdrs.h')
-rw-r--r--epan/req_resp_hdrs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/req_resp_hdrs.h b/epan/req_resp_hdrs.h
index ce7131fb30..4a06fcde5d 100644
--- a/epan/req_resp_hdrs.h
+++ b/epan/req_resp_hdrs.h
@@ -26,6 +26,8 @@
#ifndef __REQ_RESP_HDRS_H__
#define __REQ_RESP_HDRS_H__
+#include "ws_symbol_export.h"
+
/**
* Optionally do reassembly of the request/response line, headers, and body.
*
@@ -36,7 +38,7 @@
* @param desegment_body Do desegmenation on body.
* @return TRUE if desegmentation is complete otherwise FALSE
*/
-extern gboolean
+WS_DLL_PUBLIC gboolean
req_resp_hdrs_do_reassembly(tvbuff_t *tvb, const int offset, packet_info *pinfo,
const gboolean desegment_headers, const gboolean desegment_body);