Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/remote/lib/remotec.h

17 lines
449 B
C

#ifndef __REMOTEC_H__
#define __REMOTEC_H__
#include "../../core/client.h"
#include "../../core/message.h"
#include "remoted.h"
/* TODO */
int remotec_connection (int argc, char **argv, char **env, struct ipc_service *srv);
int remotec_disconnection (struct ipc_service *srv);
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);
#endif