* Get the address of smart pointer at the given stack index */
| 332 | * Get the address of smart pointer at the given stack index |
| 333 | */ |
| 334 | void* GetSmartPointer(lua_State *L, int32 Index) |
| 335 | { |
| 336 | bool bTwoLvlPtr = false; |
| 337 | void *Userdata = ::GetUserdataFast(L, Index, &bTwoLvlPtr); |
| 338 | return Userdata; |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Allocate user data |
no test coverage detected