|
I need to verify one thing.The api "attach()" is defined in lua.c like below.int my_attach(lua_State *L)
{
...........
}
static int pmain (lua_State *L) {
...................
lua_pushcfunction(L, my_attach);
lua_setglobal(L, "attach");
....................
}#1. I'd like to know the difference between those two below.wsapi --opandorbit ics.lua#2. How can I make my code access extended lua api, attach() with below?wsapi --op
And there is another difference between those two.href = "" media = 'screen'This code shows different behaviors depending on how the orbit web service is invoked.So,#3. Why this code behaves differently depending on how orbit is invoked?