Subversion Repositories Kolibri OS

Rev

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

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