Subversion Repositories Kolibri OS

Rev

Rev 1769 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8184 IgorA 1
#ifndef __MEMORY_HEAP_H_INCLUDED_
2
#define __MEMORY_HEAP_H_INCLUDED_
1769 yogev_ezra 3
 
4
namespace MemoryHeap
5
{
8184 IgorA 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);
1769 yogev_ezra 10
}
11
 
8184 IgorA 12
#endif  // ndef __MEMORY_HEAP_H_INCLUDED_
1769 yogev_ezra 13