ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.h
Revision: 1.3
Committed: Thu Nov 27 10:12:10 2003 UTC (20 years, 6 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1-3, rel-1-2
Changes since 1.2: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

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