aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat-int.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/uat-int.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/uat-int.h')
-rw-r--r--epan/uat-int.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/uat-int.h b/epan/uat-int.h
index fb1ceab431..acb342f918 100644
--- a/epan/uat-int.h
+++ b/epan/uat-int.h
@@ -32,6 +32,7 @@
#define _UAT_INT_H_
#include "uat.h"
+#include "ws_symbol_export.h"
typedef struct _uat_fld_rep_t uat_fld_rep_t;
typedef struct _uat_rep_t uat_rep_t;
@@ -75,16 +76,21 @@ void uat_init(void);
void uat_reset(void);
+WS_DLL_PUBLIC
void* uat_add_record(uat_t*, const void* orig_rec_ptr);
+WS_DLL_PUBLIC
void uat_swap(uat_t*, guint idx_a, guint idx_b);
+WS_DLL_PUBLIC
void uat_remove_record_idx(uat_t*, guint rec_idx);
void uat_destroy(uat_t*);
+WS_DLL_PUBLIC
void uat_clear(uat_t*);
+WS_DLL_PUBLIC
gboolean uat_save(uat_t* , char** );
void uat_load_all(void);