Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
8140 IgorA 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
{
8196 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);
8140 IgorA 14
}
15
 
16
#endif  // ndef __KOLIBRI_HEAP_H_INCLUDED_