Subversion Repositories Kolibri OS

Rev

Rev 1769 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef __MEMORY_HEAP_H_INCLUDED_
  2. #define __MEMORY_HEAP_H_INCLUDED_
  3.  
  4. namespace MemoryHeap
  5. {
  6.         long mem_Init();
  7.         void *mem_Alloc(unsigned long size);
  8.         void *mem_ReAlloc(unsigned long size, void *mem);
  9.         bool mem_Free(void *mem);
  10. }
  11.  
  12. #endif  // ndef __MEMORY_HEAP_H_INCLUDED_
  13.  
  14.