about summary refs log tree commit diff stats
path: root/wiki/lib/index.html
blob: 885c954a4ad1868db4fa5c609be7d825100ee2fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=../" />
<meta name="robots" content="noindex" />
<title>nothing here...</title>
</head>
<body>
<!-- this is just here to prevent directory browsing -->
</body>
</html>
------------------------*/ #define LUASOCKET_VERSION "LuaSocket 3.0-rc1" #define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab" /*-------------------------------------------------------------------------*\ * This macro prefixes all exported API functions \*-------------------------------------------------------------------------*/ #ifndef LUASOCKET_API #ifdef _WIN32 #define LUASOCKET_API __declspec(dllexport) #else #define LUASOCKET_API __attribute__ ((visibility ("default"))) #endif #endif #include "../lua.h" #include "../lauxlib.h" #include "compat.h" /*-------------------------------------------------------------------------*\ * Initializes the library. \*-------------------------------------------------------------------------*/ LUASOCKET_API int luaopen_socket_core(lua_State *L); #endif /* LUASOCKET_H */