lua-users home
lua-l archive

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


>Does anyone have any good suggestions for how to deal with getting back
>to some private instance data when in a global C function called by Lua?

How about upvalues (ie C closures)? There's also the registry, where you can
store anything you want.
--lhf