diff options
Diffstat (limited to 'lua.h')
| -rw-r--r-- | lua.h | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lua.h,v 1.3 1997/11/04 15:27:53 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ |
| 3 | ** LUA - An Extensible Extension Language | 3 | ** LUA - An Extensible Extension Language |
| 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil | 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil |
| 5 | ** e-mail: lua@tecgraf.puc-rio.br | 5 | ** e-mail: lua@tecgraf.puc-rio.br |
| @@ -85,14 +85,14 @@ int lua_isnumber (lua_Object object); | |||
| 85 | int lua_isstring (lua_Object object); | 85 | int lua_isstring (lua_Object object); |
| 86 | int lua_isfunction (lua_Object object); | 86 | int lua_isfunction (lua_Object object); |
| 87 | 87 | ||
| 88 | float lua_getnumber (lua_Object object); | 88 | double lua_getnumber (lua_Object object); |
| 89 | char *lua_getstring (lua_Object object); | 89 | char *lua_getstring (lua_Object object); |
| 90 | lua_CFunction lua_getcfunction (lua_Object object); | 90 | lua_CFunction lua_getcfunction (lua_Object object); |
| 91 | void *lua_getuserdata (lua_Object object); | 91 | void *lua_getuserdata (lua_Object object); |
| 92 | 92 | ||
| 93 | 93 | ||
| 94 | void lua_pushnil (void); | 94 | void lua_pushnil (void); |
| 95 | void lua_pushnumber (float n); | 95 | void lua_pushnumber (double n); |
| 96 | void lua_pushstring (char *s); | 96 | void lua_pushstring (char *s); |
| 97 | void lua_pushCclosure (lua_CFunction fn, int n); | 97 | void lua_pushCclosure (lua_CFunction fn, int n); |
| 98 | void lua_pushusertag (void *u, int tag); | 98 | void lua_pushusertag (void *u, int tag); |
