From 9e9b39ff56d0984db0b51c32fa6c4df01fef8495 Mon Sep 17 00:00:00 2001 From: Cyril Deguet Date: Sun, 1 May 2005 15:17:40 +0000 Subject: [PATCH] * vlc_stream.h: added missing extern "C" (prevented compilation of skins2 module in builtin mode) --- include/vlc_stream.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/vlc_stream.h b/include/vlc_stream.h index 84e78034b8..0434f81c7a 100644 --- a/include/vlc_stream.h +++ b/include/vlc_stream.h @@ -24,6 +24,10 @@ #ifndef _VLC_STREAM_H #define _VLC_STREAM_H 1 +# ifdef __cplusplus +extern "C" { +# endif + /** * \defgroup stream Stream * @@ -205,4 +209,8 @@ VLC_EXPORT( stream_t *,__stream_UrlNew, (vlc_object_t *p_this, const char *psz_u * @} */ +# ifdef __cplusplus +} +# endif + #endif -- 2.39.2