Firelight Technologies FMOD Studio API
Specifies a method for FSBank to allocate memory through callbacks.
FSBANK_RESULT FSBank_MemoryInit(
FSBANK_MEMORY_ALLOC_CALLBACK userAlloc,
FSBANK_MEMORY_REALLOC_CALLBACK userRealloc,
FSBANK_MEMORY_FREE_CALLBACK userFree
);
userAlloc
Overrides the internal calls to alloc. Compatible with ANSI malloc().
userRealloc
Overrides the internal calls to realloc. Compatible with ANSI realloc().
userFree
Overrides the internal calls to free. Compatible with ANSI free().
If the function succeeds then the return value is FSBANK_OK.
If the function fails then the return value will be one of the values defined in the FSBANK_RESULT enumeration.
Version 1.03.06 Built on Apr 17, 2014