Commit a09124b7 authored by Damien Fouilleul's avatar Damien Fouilleul

hey, don't forget win32, folks

parent d6fc1ee1
...@@ -26,8 +26,12 @@ ...@@ -26,8 +26,12 @@
#ifndef __VLC_NETWORK_H #ifndef __VLC_NETWORK_H
# define __VLC_NETWORK_H # define __VLC_NETWORK_H
#ifdef HAVE_SYS_SOCKET_H #if defined( UNDER_CE )
#include <sys/socket.h> # include <winsock.h>
#elif defined( WIN32 )
# include <winsock2.h>
#elif HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif #endif
/***************************************************************************** /*****************************************************************************
......
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