If I have the following Lua code
--Some method
function Main(instance)
local fid = 17
InvokeCMethod()
End
Can I get at the value of the above local variable from within the InvokeCMethod (in C code)? How would I do that?
Marcus