You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
864 B
23 lines
864 B
1 month ago
|
#ifndef LUASOCKET_H
|
||
|
#define LUASOCKET_H
|
||
|
/*=========================================================================*\
|
||
|
* LuaSocket toolkit
|
||
|
* Networking support for the Lua language
|
||
|
* Diego Nehab
|
||
|
* 9/11/1999
|
||
|
\*=========================================================================*/
|
||
|
#include "lua.h"
|
||
|
|
||
|
/*-------------------------------------------------------------------------*\
|
||
|
* Current socket library version
|
||
|
\*-------------------------------------------------------------------------*/
|
||
|
#define LUASOCKET_VERSION "LuaSocket 3.0-rc1"
|
||
|
#define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab"
|
||
|
|
||
|
/*-------------------------------------------------------------------------*\
|
||
|
* Initializes the library.
|
||
|
\*-------------------------------------------------------------------------*/
|
||
|
LUA_API int luaopen_socket_core(lua_State *L);
|
||
|
|
||
|
#endif /* LUASOCKET_H */
|