This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-28 00:03:35 +02:00
|
|
|
#ifndef __REMOTEC_H__
|
|
|
|
#define __REMOTEC_H__
|
|
|
|
|
2018-10-04 01:22:50 +02:00
|
|
|
#include "../../core/client.h"
|
2018-10-09 13:20:26 +02:00
|
|
|
#include "../../core/message.h"
|
2017-08-28 00:03:35 +02:00
|
|
|
#include "remoted.h"
|
|
|
|
|
|
|
|
/* TODO */
|
|
|
|
|
2018-10-04 00:30:47 +02:00
|
|
|
int remotec_connection (int argc, char **argv, char **env, struct ipc_service *srv);
|
|
|
|
int remotec_disconnection (struct ipc_service *srv);
|
2017-08-28 00:03:35 +02:00
|
|
|
|
2018-10-04 00:30:47 +02:00
|
|
|
int remotec_message_send (struct ipc_service *srv, const struct remoted_msg *msg);
|
|
|
|
int remotec_message_recv (struct ipc_service *srv, struct remoted_msg *msg);
|
2017-08-28 00:03:35 +02:00
|
|
|
|
|
|
|
#endif
|