forked from KolibriOS/kolibrios
212fed2d24
git-svn-id: svn://kolibrios.org@8179 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
285 B
C++
14 lines
285 B
C++
#ifndef __MEMORY_HEAP_H_INCLUDED_
|
|
#define __MEMORY_HEAP_H_INCLUDED_
|
|
|
|
namespace MemoryHeap
|
|
{
|
|
long mem_Init();
|
|
void *mem_Alloc(unsigned long size);
|
|
void *mem_ReAlloc(unsigned long size, void *mem);
|
|
bool mem_Free(void *mem);
|
|
}
|
|
|
|
#endif // ndef __MEMORY_HEAP_H_INCLUDED_
|
|
|