| 144 | } |
| 145 | |
| 146 | void ILAPIENTRY ilSetMemory(mAlloc AllocFunc, mFree FreeFunc) |
| 147 | { |
| 148 | ialloc_ptr = AllocFunc == NULL ? DefaultAllocFunc : AllocFunc; |
| 149 | ifree_ptr = FreeFunc == NULL ? DefaultFreeFunc : FreeFunc; |
| 150 | } |
| 151 | |
| 152 | |
| 153 | /*#if defined(_WIN32) && defined(_MEM_DEBUG) |
nothing calls this directly
no outgoing calls
no test coverage detected