remove mingw32 implementations of {get,end,set}{serv,proto}ent
[bpt/guile.git] / libguile / win32-socket.h
CommitLineData
b4e15479
SJ
1/* classes: h_files */
2
3#ifndef SCM_WIN32_SOCKET_H
4#define SCM_WIN32_SOCKET_H
5
7e369c38 6/* Copyright (C) 2001, 2006, 2013 Free Software Foundation, Inc.
b4e15479 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
b4e15479 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
b4e15479 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
b4e15479 23
12fb20e5 24#include "libguile/__scm.h"
b4e15479 25
12fb20e5 26#ifdef SCM_HAVE_WINSOCK2_H
b4e15479
SJ
27# include <winsock2.h>
28#endif
29
30int scm_i_socket_errno (void);
31char * scm_i_socket_strerror (int error);
32void scm_i_init_socket_Win32 (void);
6063dc1d
SJ
33char * scm_i_socket_filename (char *file);
34
b4e15479 35#endif /* SCM_WIN32_SOCKET_H */