blob: 8358dbc3c7c591576ceacdf469bb39344454e530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef RVL_SDK_IPC_PROFILE_H
#define RVL_SDK_IPC_PROFILE_H
#include "common.h"
#include "rvl/IPC/ipcclt.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
|