mirror of
https://github.com/zeldaret/ss
synced 2026-06-29 11:10:50 -04:00
18 lines
333 B
C
18 lines
333 B
C
#ifndef RVL_SDK_IPC_PROFILE_H
|
|
#define RVL_SDK_IPC_PROFILE_H
|
|
#include "rvl/IPC/ipcclt.h"
|
|
#include "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
|