summaryrefslogtreecommitdiff
path: root/include/rvl/IPC/memory.h
blob: a755ce2f7b8ffc1da00e4e60e0dc33ed137bd7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef RVL_SDK_IPC_MEMORY_H
#define RVL_SDK_IPC_MEMORY_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif

s32 iosCreateHeap(void *, u32);

void *iosAllocAligned(s32, u32, s32);
s32 iosFree(s32, void *);

#ifdef __cplusplus
}
#endif
#endif