summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Lua/luasocket/src/wsocket.h')
-rw-r--r--3rdParty/Lua/luasocket/src/wsocket.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/3rdParty/Lua/luasocket/src/wsocket.h b/3rdParty/Lua/luasocket/src/wsocket.h
new file mode 100644
index 0000000..b536683
--- /dev/null
+++ b/3rdParty/Lua/luasocket/src/wsocket.h
@@ -0,0 +1,21 @@
+#ifndef WSOCKET_H
+#define WSOCKET_H
+/*=========================================================================*\
+* Socket compatibilization module for Win32
+* LuaSocket toolkit
+*
+* RCS ID: $Id: wsocket.h,v 1.4 2005/10/07 04:40:59 diego Exp $
+\*=========================================================================*/
+
+/*=========================================================================*\
+* 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 */