blob: a7ed73b1629311be60eaa0bc98d2e898a72a61a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef HOMEBUTTON_COMMON_H
#define HOMEBUTTON_COMMON_H
#include <revolution/mem.h>
extern "C" MEMAllocator* spAllocator;
void* HBMAllocMem(u32 length);
void HBMFreeMem(void* ptr);
#endif
|