BsMMAlloc.h 493 B

123456789101112
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #ifndef __MMALLOC_H__
  4. #define __MMALLOC_H__
  5. void* mmalloc_new_context();
  6. void mmalloc_free_context(void* context);
  7. void* mmalloc(void* context, int size);
  8. void mmfree(void* ptr);
  9. char* mmalloc_strdup(void* context, const char* input);
  10. #endif