Allows the application to set which memory routines should be used by the array object
| 22 | |
| 23 | // Allows the application to set which memory routines should be used by the array object |
| 24 | void CScriptArray::SetMemoryFunctions(asALLOCFUNC_t allocFunc, asFREEFUNC_t freeFunc) |
| 25 | { |
| 26 | userAlloc = allocFunc; |
| 27 | userFree = freeFunc; |
| 28 | } |
| 29 | |
| 30 | static void RegisterScriptArray_Native(asIScriptEngine *engine); |
| 31 | static void RegisterScriptArray_Generic(asIScriptEngine *engine); |
nothing calls this directly
no outgoing calls
no test coverage detected