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/pubsub/lib/pubsubd.h

16 lines
391 B
C
Raw Normal View History

2016-06-05 20:48:13 +02:00
#ifndef __PUBSUBD_H__
#define __PUBSUBD_H__
2017-01-19 22:07:52 +01:00
// #include "../../core/pubsub.h"
#include "../../core/process.h"
#include "../../core/msg.h"
#include "msg.h"
#include "channels.h"
2016-06-05 20:48:13 +02:00
2017-01-19 22:07:52 +01:00
#define PUBSUBD_SERVICE_NAME "pubsubd"
2016-06-05 20:48:13 +02:00
2017-01-19 22:07:52 +01:00
void pubsubd_main_loop (struct service *srv, struct channels * chans);
2018-10-03 22:02:37 +02:00
void pubsubd_message_send (const struct ipc_process_array *ap, const struct pubsub_msg * m);
2016-06-05 20:48:13 +02:00
#endif