16.08.2015, 15:19
Well, it's great if you fixed them. I thought that 26 errors appeared suddenly - in that case it may be a syntax error (not closed curly braket somewhere in another file).
To fix that last error you may find "forward Malloc_OnRuntimeError" string and create your own public function with declared argument list, e.g.:
To fix that last error you may find "forward Malloc_OnRuntimeError" string and create your own public function with declared argument list, e.g.:
Код:
forward Malloc_OnRuntimeError( ...some arguments... ); public Malloc_OnRuntimeError( ...exactly the same arguments... ) { // do something - this function is called on runtime error (maybe log an error?) }