mirror of
https://github.com/zeldaret/ss
synced 2026-06-02 02:00:06 -04:00
17 lines
256 B
C
17 lines
256 B
C
#ifndef RVL_SDK_IPC_MEMORY_H
|
|
#define RVL_SDK_IPC_MEMORY_H
|
|
#include <lib/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
|