12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef SCM_WIN32_SOCKET_H
- #define SCM_WIN32_SOCKET_H
- #include "libguile/__scm.h"
- #ifdef SCM_HAVE_WINSOCK2_H
- # include <winsock2.h>
- #endif
- int scm_i_socket_errno (void);
- char * scm_i_socket_strerror (int error);
- void scm_i_init_socket_Win32 (void);
- char * scm_i_socket_filename (char *file);
- struct servent * getservent (void);
- void setservent (int stayopen);
- void endservent (void);
- struct protoent * getprotoent (void);
- void setprotoent (int stayopen);
- void endprotoent (void);
- #endif
|