blob: 790ae452e5fec7c313480ae7da79cdb8f6c59328 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef NOTIFY_CONNECTION_H
#define NOTIFY_CONNECTION_H
void notify_connection_create(int fd, bool fifo);
void notify_connections_destroy_all(void);
void notify_connection_sync_callback(bool success, void *context);
#endif
|