aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codecs.h
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-12-03 21:32:25 +0100
committerGuy Harris <guy@alum.mit.edu>2015-12-03 23:54:49 +0000
commit651e0884b7d9fdf64d5310c4e317d757d2357259 (patch)
tree5130af56d46332ddfb40e9ed3a71e04e9a67c88d /codecs/codecs.h
parent687b2dcadc22e2404c9ad7516eca2fa868338120 (diff)
Change codecs from static to dynamic library
This allows to properly register codecs plugins. See https://www.wireshark.org/lists/wireshark-dev/201511/msg00202.html for details. Change-Id: Ibc13a19936abb7a2e81b86582a75fa424351565b Reviewed-on: https://code.wireshark.org/review/12385 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'codecs/codecs.h')
-rw-r--r--codecs/codecs.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/codecs/codecs.h b/codecs/codecs.h
index 7ba918ac30..5fb90e644b 100644
--- a/codecs/codecs.h
+++ b/codecs/codecs.h
@@ -33,8 +33,8 @@ extern "C" {
#endif /* __cplusplus */
#ifdef HAVE_PLUGINS
-extern void codec_register_plugin_types(void);
-extern void register_all_codecs(void);
+WS_DLL_PUBLIC void codec_register_plugin_types(void);
+WS_DLL_PUBLIC void register_all_codecs(void);
#endif
struct codec_handle;
@@ -47,15 +47,15 @@ typedef unsigned (*codec_get_frequency_fn)(void *context);
typedef size_t (*codec_decode_fn)(void *context, const void *input, size_t inputSizeBytes,
void *output, size_t *outputSizeBytes);
-extern gboolean register_codec(const char *name, codec_init_fn init_fn,
+WS_DLL_PUBLIC gboolean register_codec(const char *name, codec_init_fn init_fn,
codec_release_fn release_fn, codec_get_channels_fn channels_fn,
codec_get_frequency_fn frequency_fn, codec_decode_fn decode_fn);
-extern codec_handle_t find_codec(const char *name);
-extern void *codec_init(codec_handle_t codec);
-extern void codec_release(codec_handle_t codec, void *context);
-extern unsigned codec_get_channels(codec_handle_t codec, void *context);
-extern unsigned codec_get_frequency(codec_handle_t codec, void *context);
-extern size_t codec_decode(codec_handle_t codec, void *context, const void *input,
+WS_DLL_PUBLIC codec_handle_t find_codec(const char *name);
+WS_DLL_PUBLIC void *codec_init(codec_handle_t codec);
+WS_DLL_PUBLIC void codec_release(codec_handle_t codec, void *context);
+WS_DLL_PUBLIC unsigned codec_get_channels(codec_handle_t codec, void *context);
+WS_DLL_PUBLIC unsigned codec_get_frequency(codec_handle_t codec, void *context);
+WS_DLL_PUBLIC size_t codec_decode(codec_handle_t codec, void *context, const void *input,
size_t inputSizeBytes, void *output, size_t *outputSizeBytes);
#ifdef __cplusplus