Subversion Repositories Kolibri OS

Rev

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

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