ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.h
Revision: 1.6
Committed: Wed Nov 5 14:43:54 2008 UTC (15 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: before_dynamic_fontidx, rel-9_10, dynamic_fontidx, rel-9_09, rel-9_06, rel-9_07
Changes since 1.5: +2 -1 lines
Log Message:
minor overlay refactoring, syntax changes

File Contents

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