ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.h
Revision: 1.4
Committed: Sat Jan 17 01:20:01 2004 UTC (20 years, 4 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_1_0, rel-2_8, rel-2_7, rel-2_4, rel-2_5, rel-2_2, rel-2_3, rel-2_0, rel-1_9, rel-3_6, rel-3_5, rel-3_4, rel-3_3, rel-3_2, rel-3_0, before_astyle, after_astyle
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef RXVT_DAEMON_H
2 #define RXVT_DAEMON_H
3
4 #include "rxvtstl.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