*** empty log message ***
[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
6/* Copyright (C) 2001 Free Software Foundation, Inc.
7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
b4e15479 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
b4e15479 14 * but 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
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
b4e15479 22
12fb20e5 23#include "libguile/__scm.h"
b4e15479 24
12fb20e5 25#ifdef SCM_HAVE_WINSOCK2_H
b4e15479
SJ
26# include <winsock2.h>
27#endif
28
29int scm_i_socket_errno (void);
30char * scm_i_socket_strerror (int error);
31void scm_i_init_socket_Win32 (void);
6063dc1d
SJ
32char * scm_i_socket_filename (char *file);
33
34struct servent * getservent (void);
35void setservent (int stayopen);
36void endservent (void);
37struct protoent * getprotoent (void);
38void setprotoent (int stayopen);
39void endprotoent (void);
b4e15479
SJ
40
41#endif /* SCM_WIN32_SOCKET_H */