On the stack - the lua function calling c function 
'static int LUACALL My_C_fn(lua_State *L)'

Ray

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Labenski
Sent: Thursday, 13 April 2006 10:02
To: wxlua-users@lists.sourceforge.net
Subject: Re: [Wxlua-users] How to get lua function name while in C
function

On 4/12/06, Ray Gilbert <[EMAIL PROTECTED]> wrote:
>
> Has anyone got a sample of c code showing how to get lua function name

Hi, I'm not sure I understand what you mean. A lua function that's on
the stack or just see if the function exists at all?

To see if it exists I think this should work

lua_getglobal(L, "myfunction");
lua_isfunction(L, -1)

then to run it do

lua_pcall(L, 0, LUA_MULTRET, 0);

else pop it off the stack

lua_pop(L, 1)


-John Labenski


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
that extends applications into web and mobile media. Attend the live
webcast
and join the prime developer group breaking into this new coding
territory!
http://sel.as-us.falkag.net/sel?cmd=k&kid0944&bid$1720&dat1642
_______________________________________________
Wxlua-users mailing list
Wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Wxlua-users mailing list
Wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to