]> git.sesse.net Git - vlc/commitdiff
oups, better put the prototype before using the function
authorChristophe Mutricy <xtophe@videolan.org>
Sat, 19 May 2007 00:35:48 +0000 (00:35 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sat, 19 May 2007 00:35:48 +0000 (00:35 +0000)
include/vlc_url.h

index b501b3ae2d355cad01df22229cfbdbd763e07915..971cf34aad48f986bd46b37e58f1f6e4db6d1584 100644 (file)
@@ -44,6 +44,12 @@ typedef struct
     char *psz_buffer; /* to be freed */
 } vlc_url_t;
 
+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( void, decode_URI, ( char *psz ) );
+VLC_EXPORT( char *, encode_URI_component, ( const char *psz ) );
+
 /*****************************************************************************
  * vlc_UrlParse:
  *****************************************************************************
@@ -188,11 +194,6 @@ static inline void vlc_UrlClean( vlc_url_t *url )
     url->psz_buffer   = NULL;
 }
 
-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( void, decode_URI, ( char *psz ) );
-VLC_EXPORT( char *, encode_URI_component, ( const char *psz ) );
 
 static inline char *vlc_UrlEncode( const char *psz_url )
 {