mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 07:38:54 -04:00
17 lines
251 B
C
17 lines
251 B
C
#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
|