xdbe replaced with more generic pixmap based buffering but there are 3 major bugs:
[monky] / src / exec.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
14  *   (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #ifndef _EXEC_H
32 #define _EXEC_H
33
34 extern pid_t childpid;
35
36 void scan_exec_arg(struct text_object *, const char *);
37 void scan_pre_exec_arg(struct text_object *, const char *);
38 void scan_execi_arg(struct text_object *, const char *);
39 void scan_execgraph_arg(struct text_object *, const char *);
40 void print_exec(struct text_object *, char *, int);
41 void print_execp(struct text_object *, char *, int);
42 void print_execi(struct text_object *, char *, int);
43 void print_execpi(struct text_object *, char *, int);
44 void print_texeci(struct text_object *, char *, int);
45 void print_execgauge(struct text_object *, char *, int);
46 #ifdef X11
47 void print_execgraph(struct text_object *, char *, int);
48 void print_execigraph(struct text_object *, char *, int);
49 #endif /* X11 */
50 void print_execigauge(struct text_object *, char *, int);
51 void print_execbar(struct text_object *, char *, int);
52 void print_execibar(struct text_object *, char *, int);
53 void free_exec(struct text_object *);
54 void free_execi(struct text_object *);
55 #endif /* _EXEC_H */