lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>From: Christophe Gimenez <chris@kandji.com>
>
>I would like to PUSH a pointer to LUA (ok that a usedata lua object).

use lua_pushuserdata(u), where u is your pointer.
this is will tag u with the default tag.

>It seems (not sure) that I must use "tags"...

you may use the default tag, as explained above.

>Really I start to like LUA a lot !!

so do we. :-)
--lhf