| 161 | } |
| 162 | |
| 163 | bool CFunctionHandler::GetParamUDVal(int nIdx,USER_DATA &val,int &cookie) //AMD Port |
| 164 | { |
| 165 | USER_DATA_CHUNK *udc=(USER_DATA_CHUNK *)lua_touserdata(m_pLS,nIdx+1); |
| 166 | if(!udc) |
| 167 | return false; |
| 168 | val=udc->nVal; |
| 169 | cookie=udc->nCookie; |
| 170 | return true; |
| 171 | } |
| 172 | |
| 173 | ScriptVarType CFunctionHandler::GetParamType(int nIdx) |
| 174 | { |
no test coverage detected