lua-users home
lua-l archive

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


> Is there a way to access objects from one state in another state?

No, it should be impossible without modifying Lua sources.
By design, each Lua state is hermetic from the others.
However, by hacking the sources, you may be able to access a direct
pointer to the value structure, but you certainly don't want to do
that, do you?