blob: c048c584f06d3e9b5695c318670bc9efa6cd8444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef WSOCKET_H
#define WSOCKET_H
/*=========================================================================*\
* Socket compatibilization module for Win32
* LuaSocket toolkit
*
* RCS ID: $Id$
\*=========================================================================*/
/*=========================================================================*\
* WinSock include files
\*=========================================================================*/
#include <winsock.h>
typedef int socklen_t;
typedef SOCKET t_sock;
typedef t_sock *p_sock;
#define SOCK_INVALID (INVALID_SOCKET)
#endif /* WSOCKET_H */
|