mirror of
https://github.com/zeldaret/ss
synced 2026-06-17 07:07:39 -04:00
18 lines
341 B
C
18 lines
341 B
C
#ifndef RVL_SDK_IPC_PROFILE_H
|
|
#define RVL_SDK_IPC_PROFILE_H
|
|
#include <lib/rvl/IPC/ipcclt.h>
|
|
#include <lib/rvl/types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void IPCiProfInit(void);
|
|
void IPCiProfQueueReq(IPCRequestEx* req, s32 fd);
|
|
void IPCiProfAck(void);
|
|
void IPCiProfReply(IPCRequestEx* req, s32 fd);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|