ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.h
Revision: 1.5
Committed: Sun Aug 15 00:37:04 2004 UTC (19 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-8_5a, rel-6_2, rel-6_3, rel-6_0, rel-6_1, rel-4_8, rel-4_9, rel-4_4, rel-4_6, rel-4_7, rel-4_0, rel-4_1, rel-4_2, rel-4_3, rel-7_3a, rel-9_0, rel-7_3, rel-7_2, rel-7_1, rel-7_0, rel-7_7, rel-7_6, rel-7_5, rel-7_4, rel-7_9, rel-7_8, rel-5_5, rel-5_4, rel-5_7, rel-5_1, rel-5_0, rel-5_3, rel-5_2, rel-5_9, rel-5_8, rel-3_7, rel-3_8, rel-8_8, rel-8_9, rel-8_0, rel-8_1, rel-8_2, rel-8_3, rel-8_4, rel-8_6, rel-8_7, rel-9_02, rel-9_01, rel-9_05
Changes since 1.4: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

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