change PAD_ScanPads()s behaviour. the return value now contains a bitmask of the...
[libogc.git] / lwbt / btmemr.h
blobf9c71523aeedcf4cbb8db78159ef5329d1621fce
1 #ifndef __BTMEMR_H__
2 #define __BTMEMR_H__
4 #include <gctypes.h>
6 void btmemr_init();
7 void* btmemr_malloc(u32 size);
8 void btmemr_free(void *ptr);
9 void* btmemr_realloc(void *ptr,u32 newsize);
10 void* btmemr_reallocm(void *ptr,u32 newsize);
12 #endif