| 60 | } |
| 61 | |
| 62 | LUA_API int xlua_tocsobj_fast (lua_State *L,int index) { |
| 63 | int *udata = (int *)lua_touserdata (L,index); |
| 64 | |
| 65 | if(udata!=NULL) |
| 66 | return *udata; |
| 67 | return -1; |
| 68 | } |
| 69 | |
| 70 | #if LUA_VERSION_NUM == 501 |
| 71 | #undef lua_getglobal |
nothing calls this directly
no test coverage detected