X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_url.h;h=4884ff8b3778336e36a40e58e128efb3efd70dc1;hb=fd4a0ddc54b4571272e68d29c9ad733b9544d811;hp=448c685435182eee1e5e59ffca78a5712afc9eff;hpb=c48ac54880b101834b5106bca116024999067db2;p=vlc diff --git a/include/vlc_url.h b/include/vlc_url.h index 448c685435..4884ff8b37 100644 --- a/include/vlc_url.h +++ b/include/vlc_url.h @@ -45,12 +45,11 @@ struct vlc_url_t char *psz_buffer; /* to be freed */ }; -VLC_EXPORT( char *, unescape_URI_duplicate, ( const char *psz ) ); -VLC_EXPORT( void, unescape_URI, ( char *psz ) ); -VLC_EXPORT( char *, decode_URI_duplicate, ( const char *psz ) ); -VLC_EXPORT( char *, decode_URI, ( char *psz ) ); -VLC_EXPORT( char *, encode_URI_component, ( const char *psz ) ); -VLC_EXPORT( char *, make_URI, ( const char *path ) ); +VLC_API char * decode_URI_duplicate( const char *psz ); +VLC_API char * decode_URI( char *psz ); +VLC_API char * encode_URI_component( const char *psz ); +VLC_API char * make_URI( const char *path, const char *scheme ); +VLC_API char * make_path( const char *url ); /***************************************************************************** * vlc_UrlParse: @@ -195,12 +194,6 @@ static inline void vlc_UrlClean( vlc_url_t *url ) url->psz_buffer = NULL; } -static inline char *vlc_UrlEncode( const char *psz_url ) -{ - /* FIXME: do not encode / : ? and & _when_ not needed */ - return encode_URI_component( psz_url ); -} - #include /** Check whether a given string is not a valid URL and must hence be