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, 7 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

# Content
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