luasocket/src/wsocket.h

22 lines
617 B
C
Raw Normal View History

#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;
2005-10-07 06:40:59 +02:00
typedef SOCKET t_socket;
typedef t_socket *p_socket;
2005-10-07 06:40:59 +02:00
#define SOCKET_INVALID (INVALID_SOCKET)
#endif /* WSOCKET_H */