forked from KolibriOS/kolibrios
8b59b0bc76
git-svn-id: svn://kolibrios.org@8196 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
422 B
C++
17 lines
422 B
C++
#ifndef __KOLIBRI_HEAP_H_INCLUDED_
|
|
#define __KOLIBRI_HEAP_H_INCLUDED_
|
|
|
|
#include "kolibri.h"
|
|
|
|
// Kolibri memory heap interface.
|
|
|
|
namespace Kolibri // All kolibri functions, types and data are nested in the (Kolibri) namespace.
|
|
{
|
|
long HeapInit();
|
|
void *Alloc(unsigned long int size);
|
|
void *ReAlloc(void *mem, unsigned long int size);
|
|
void Free(void *mem);
|
|
}
|
|
|
|
#endif // ndef __KOLIBRI_HEAP_H_INCLUDED_
|