21 lines
617 B
C
21 lines
617 B
C
#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_socket;
|
|
typedef t_socket *p_socket;
|
|
|
|
#define SOCKET_INVALID (INVALID_SOCKET)
|
|
|
|
#endif /* WSOCKET_H */
|