*** empty log message ***
[dana/urxvt.git] / src / rxvtdaemon.h
1 #ifndef RXVT_DAEMON_H
2 #define RXVT_DAEMON_H
3
4 #include "rxvtutil.h"
5
6 struct rxvt_connection
7 {
8   int fd;
9
10   static char *unix_sockname ();
11
12   void send (const char *data, int len);
13   void send (const char *data);
14   void send (int data);
15
16   bool recv (auto_str &data, int *len = 0);
17   bool recv (int &data);
18 };
19
20 #endif
21