Commit 1d22fe1f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Forward declare vlc_url_t

parent 64fcf937
...@@ -383,6 +383,7 @@ typedef struct virtual_socket_t v_socket_t; ...@@ -383,6 +383,7 @@ typedef struct virtual_socket_t v_socket_t;
typedef struct sockaddr sockaddr; typedef struct sockaddr sockaddr;
typedef struct addrinfo addrinfo; typedef struct addrinfo addrinfo;
typedef struct vlc_acl_t vlc_acl_t; typedef struct vlc_acl_t vlc_acl_t;
typedef struct vlc_url_t vlc_url_t;
/* Misc */ /* Misc */
typedef struct iso639_lang_t iso639_lang_t; typedef struct iso639_lang_t iso639_lang_t;
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#ifndef __VLC_URL_H #ifndef __VLC_URL_H
# define __VLC_URL_H # define __VLC_URL_H
typedef struct struct vlc_url_t
{ {
char *psz_protocol; char *psz_protocol;
char *psz_username; char *psz_username;
...@@ -42,7 +42,7 @@ typedef struct ...@@ -42,7 +42,7 @@ typedef struct
char *psz_option; char *psz_option;
char *psz_buffer; /* to be freed */ char *psz_buffer; /* to be freed */
} vlc_url_t; };
VLC_EXPORT( char *, unescape_URI_duplicate, ( const char *psz ) ); VLC_EXPORT( char *, unescape_URI_duplicate, ( const char *psz ) );
VLC_EXPORT( void, unescape_URI, ( char *psz ) ); VLC_EXPORT( void, unescape_URI, ( char *psz ) );
......
...@@ -27,9 +27,6 @@ ...@@ -27,9 +27,6 @@
#include <vlc_block.h> #include <vlc_block.h>
#include <vlc_network.h> #include <vlc_network.h>
#include <vlc_url.h>
#include <vlc_sout.h> #include <vlc_sout.h>
#include "rtp.h" #include "rtp.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment