lua-users home
lua-l archive

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


> In the LIB distribution on the Web site, how do you ensure proper order
> of parameter passing/stack cleanup (pascal, cdecl, fastcall) or
> structure packing/alignment?   I'm guessing in the latter case that Lua
> doesn't export any user modifiable structures, which would solve that
> problem cleanly.

Lua only exports structures for its debug API. The "main" API uses no
visible structures at all.

-- Roberto