mirror of
https://github.com/zeldaret/ss
synced 2026-05-29 16:44:44 -04:00
18 lines
330 B
C
18 lines
330 B
C
#ifndef RVL_SDK_IPC_PROFILE_H
|
|
#define RVL_SDK_IPC_PROFILE_H
|
|
#include "rvl/IPC/ipcclt.h"
|
|
#include <common.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
|