| 1359 | } |
| 1360 | |
| 1361 | NULLCArray<void> NULLC::AllocArray(int size, int count, unsigned typeID) |
| 1362 | { |
| 1363 | NULLCArray<void> ret; |
| 1364 | ret.ptr = (char*)AllocObject(count * size, typeID); |
| 1365 | ret.size = count; |
| 1366 | return ret; |
| 1367 | } |
| 1368 | |
| 1369 | void NULLC::MarkMemory(unsigned int number) |
| 1370 | { |
nothing calls this directly
no outgoing calls
no test coverage detected