Allows the application to set which memory routines should be used by the array object
| 17 | |
| 18 | // Allows the application to set which memory routines should be used by the array object |
| 19 | void CScriptGrid::SetMemoryFunctions(asALLOCFUNC_t allocFunc, asFREEFUNC_t freeFunc) |
| 20 | { |
| 21 | userAlloc = allocFunc; |
| 22 | userFree = freeFunc; |
| 23 | } |
| 24 | |
| 25 | static void RegisterScriptGrid_Native(asIScriptEngine *engine); |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected