lua-users home
lua-l archive

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


On Thu, Jul 30, 2009 at 4:15 PM, Subhash_Patil<Subhash_Patil@satyam.com> wrote:
>             lua_pushcfunction(L, SCSL_Draw_Rect(L));

Do you mean to be actually calling the function here? It looks like

   lua_pushcfunction(L, SCSL_Draw_Rect);

...might be what you want instead.

-Duncan