diff options
author | Balint Reczey <balint@balintreczey.hu> | 2013-02-28 19:35:59 +0000 |
---|---|---|
committer | Balint Reczey <balint@balintreczey.hu> | 2013-02-28 19:35:59 +0000 |
commit | aa659985a586d2d2173d457dea8d1b4346e205e8 (patch) | |
tree | 6ec6595ee9f193b8551ea592a2622bb10a7d8e1f /wiretap/snoop.h | |
parent | 6c29b9edd6db4cfa809a8ede8d22539df117dffe (diff) | |
download | wireshark-aa659985a586d2d2173d457dea8d1b4346e205e8.tar.gz wireshark-aa659985a586d2d2173d457dea8d1b4346e205e8.tar.bz2 wireshark-aa659985a586d2d2173d457dea8d1b4346e205e8.zip |
Export libwiretap symbols using WS_DLL_PUBLIC define
TODO: hide flex-generated functions
svn path=/trunk/; revision=47948
Diffstat (limited to 'wiretap/snoop.h')
-rw-r--r-- | wiretap/snoop.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wiretap/snoop.h b/wiretap/snoop.h index c321053329..8010899661 100644 --- a/wiretap/snoop.h +++ b/wiretap/snoop.h @@ -25,9 +25,13 @@ #include <glib.h> #include <wtap.h> +#include "ws_symbol_export.h" +WS_DLL_LOCAL int snoop_open(wtap *wth, int *err, gchar **err_info); +WS_DLL_LOCAL gboolean snoop_dump_open(wtap_dumper *wdh, int *err); +WS_DLL_LOCAL int snoop_dump_can_write_encap(int encap); #endif |