mirror of
https://github.com/zeldaret/ss
synced 2026-06-30 03:18:55 -04:00
16 lines
243 B
C
16 lines
243 B
C
#ifndef RVL_SDK_OS_IPC_H
|
|
#define RVL_SDK_OS_IPC_H
|
|
#include "rvl/types.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* __OSGetIPCBufferHi(void);
|
|
void* __OSGetIPCBufferLo(void);
|
|
void __OSInitIPCBuffer(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|