| 326 | } |
| 327 | |
| 328 | NULLCRef __nullcMakeAutoRef(void* ptr, unsigned int typeID) |
| 329 | { |
| 330 | NULLCRef ret; |
| 331 | ret.ptr = (char*)ptr; |
| 332 | ret.typeID = typeID; |
| 333 | return ret; |
| 334 | } |
| 335 | void* __nullcGetAutoRef(const NULLCRef &ref, unsigned int typeID) |
| 336 | { |
| 337 | __assert(ref.typeID == typeID); |
no outgoing calls
no test coverage detected