1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

Allow multiple inclusions of "network.h"

This commit is contained in:
Rémi Denis-Courmont 2004-11-07 11:17:37 +00:00
parent 233f37b670
commit 5f2fabb3cd

View File

@ -22,6 +22,8 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifndef __VLC_NETWORK_H
# define __VLC_NETWORK_H
/*****************************************************************************
* network_socket_t: structure passed to a network plug-in to define the
* kind of socket we want
@ -253,3 +255,5 @@ VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, v_socket_t *, const
#define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, v_socket_t *, const char *psz_fmt, va_list args ) );
#endif