mirror of
https://github.com/zeldaret/ss
synced 2026-06-05 19:27:35 -04:00
17 lines
252 B
C
17 lines
252 B
C
#ifndef RVL_SDK_IPC_MEMORY_H
|
|
#define RVL_SDK_IPC_MEMORY_H
|
|
#include "rvl/types.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
s32 iosCreateHeap(void*, u32);
|
|
|
|
void* iosAllocAligned(s32, u32, s32);
|
|
s32 iosFree(s32, void*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|