new version for API

This commit is contained in:
Roberto Ierusalimschy
2000-09-05 16:33:32 -03:00
parent f67f324377
commit 6e80c1cde1
13 changed files with 266 additions and 229 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lualib.h,v 1.9 2000/06/16 17:22:43 roberto Exp roberto $
** $Id: lualib.h,v 1.10 2000/08/09 19:16:57 roberto Exp roberto $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -10,6 +10,7 @@
#include "lua.h"
void lua_baselibopen (lua_State *L);
void lua_iolibopen (lua_State *L);
void lua_strlibopen (lua_State *L);
void lua_mathlibopen (lua_State *L);
@@ -17,26 +18,6 @@ void lua_dblibopen (lua_State *L);
/*
** ===============================================================
** Macros (and functions) for single-state use
** ===============================================================
*/
#ifdef LUA_SINGLESTATE
#define lua_iolibopen() (lua_iolibopen)(lua_state)
#define lua_strlibopen() (lua_strlibopen)(lua_state)
#define lua_mathlibopen() (lua_mathlibopen)(lua_state)
#define lua_dblibopen() (lua_dblibopen)(lua_state)
/* this function should be used only in single-state mode */
void lua_userinit (void);
#endif
/* Auxiliary functions (private) */
const char *luaI_classend (lua_State *L, const char *p);