mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
9e79c9d99b
* code cleanup
26 lines
579 B
C
26 lines
579 B
C
// 2 MEM2 allocators, one for general purpose, one for covers
|
|
// Aligned and padded to 32 bytes, as required by many functions
|
|
|
|
#ifndef __MEM2_H_
|
|
#define __MEM2_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void MEM2_init( unsigned int mem2Size );
|
|
void MEM2_cleanup( void );
|
|
void MEM2_takeBigOnes( bool b );
|
|
void *MEM2_alloc( unsigned int s );
|
|
void *MEM2_realloc( void *p, unsigned int s );
|
|
void MEM2_free( void *p );
|
|
unsigned int MEM2_usableSize( void *p );
|
|
unsigned int MEM2_freesize();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !defined(__MEM2_H_)
|