mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
a95fe25030
(VERY beta, not suggested to use this version)
40 lines
981 B
C++
40 lines
981 B
C++
// 1 MEM2 allocator, one for general purpose
|
|
// Aligned and padded to 32 bytes, as required by many functions
|
|
|
|
#ifndef __MEM2_HPP
|
|
#define __MEM2_HPP
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void MEM_init();
|
|
|
|
void *MEM1_lo_alloc(unsigned int s);
|
|
void MEM1_lo_free(void *p);
|
|
unsigned int MEM1_lo_freesize();
|
|
|
|
void *MEM1_alloc(unsigned int s);
|
|
void *MEM1_memalign(unsigned int a, unsigned int s);
|
|
void *MEM1_realloc(void *p, unsigned int s);
|
|
void MEM1_free(void *p);
|
|
unsigned int MEM1_freesize();
|
|
|
|
void *MEM2_lo_alloc(unsigned int s);
|
|
void *MEM2_lo_realloc(void *p, unsigned int s);
|
|
void MEM2_lo_free(void *p);
|
|
unsigned int MEM2_lo_freesize();
|
|
|
|
void MEM2_free(void *p);
|
|
void *MEM2_alloc(unsigned int s);
|
|
void *MEM2_memalign(unsigned int /* alignment */, unsigned int s);
|
|
void *MEM2_realloc(void *p, unsigned int s);
|
|
unsigned int MEM2_usableSize(void *p);
|
|
unsigned int MEM2_freesize();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !defined(__MEM2_HPP)
|