aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.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/dissectors/packet-rtp.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/dissectors/packet-rtp.h')
-rw-r--r--epan/dissectors/packet-rtp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtp.h b/epan/dissectors/packet-rtp.h
index 72722b2e4f..a950675eb5 100644
--- a/epan/dissectors/packet-rtp.h
+++ b/epan/dissectors/packet-rtp.h
@@ -27,6 +27,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#include "ws_symbol_export.h"
+
struct _rtp_info {
unsigned int info_version;
gboolean info_padding_set;
@@ -122,6 +124,7 @@ typedef struct {
} encoding_name_and_rate_t;
/* Add an RTP conversation with the given details */
+WS_DLL_PUBLIC
void rtp_add_address(packet_info *pinfo,
address *addr, int port,
int other_port,
@@ -131,6 +134,7 @@ void rtp_add_address(packet_info *pinfo,
GHashTable *rtp_dyn_payload);
/* Add an SRTP conversation with the given details */
+WS_DLL_PUBLIC
void srtp_add_address(packet_info *pinfo,
address *addr, int port,
int other_port,
@@ -141,5 +145,6 @@ void srtp_add_address(packet_info *pinfo,
struct srtp_info *srtp_info);
/* Free and destroy the dyn_payload hash table */
+WS_DLL_PUBLIC
void rtp_free_hash_dyn_payload(GHashTable *rtp_dyn_payload);