diff options
Diffstat (limited to '')
| -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.18 1998/05/18 22:26:03 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.19 1998/06/02 20:37:04 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 |
| @@ -104,7 +104,7 @@ void lua_pushnil (void); | |||
| 104 | void lua_pushnumber (double n); | 104 | void lua_pushnumber (double n); |
| 105 | void lua_pushlstring (char *s, long len); | 105 | void lua_pushlstring (char *s, long len); |
| 106 | void lua_pushstring (char *s); | 106 | void lua_pushstring (char *s); |
| 107 | void lua_pushCclosure (lua_CFunction fn, int n); | 107 | void lua_pushcclosure (lua_CFunction fn, int n); |
| 108 | void lua_pushusertag (void *u, int tag); | 108 | void lua_pushusertag (void *u, int tag); |
| 109 | void lua_pushobject (lua_Object object); | 109 | void lua_pushobject (lua_Object object); |
| 110 | 110 | ||
| @@ -151,7 +151,7 @@ void (lua_pushuserdata) (void *u); | |||
| 151 | #define lua_pushuserdata(u) lua_pushusertag(u, 0) | 151 | #define lua_pushuserdata(u) lua_pushusertag(u, 0) |
| 152 | 152 | ||
| 153 | void (lua_pushcfunction) (lua_CFunction f); | 153 | void (lua_pushcfunction) (lua_CFunction f); |
| 154 | #define lua_pushcfunction(f) lua_pushCclosure(f, 0) | 154 | #define lua_pushcfunction(f) lua_pushcclosure(f, 0) |
| 155 | 155 | ||
| 156 | int (lua_clonetag) (int t); | 156 | int (lua_clonetag) (int t); |
| 157 | #define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t)) | 157 | #define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t)) |
