Subversion Repositories Kolibri OS

Rev

Rev 8184 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef __KOLIBRI_HEAP_H_INCLUDED_
  2. #define __KOLIBRI_HEAP_H_INCLUDED_
  3.  
  4. #include "kolibri.h"
  5.  
  6. // Kolibri memory heap interface.
  7.  
  8. namespace Kolibri   // All kolibri functions, types and data are nested in the (Kolibri) namespace.
  9. {
  10.         long HeapInit();
  11.         void *Alloc(unsigned long int size);
  12.         void *ReAlloc(void *mem, unsigned long int size);
  13.         void Free(void *mem);
  14. }
  15.  
  16. #endif  // ndef __KOLIBRI_HEAP_H_INCLUDED_
  17.