ekg2
 All Struktury Danych Pliki Funkcje Zmienne Definicje typów Wyliczenia Wartości wyliczeń Definicje Grupay Strony
configfile.h
Idź do dokumentacji tego pliku.
1 /* $Id$ */
2 
3 /*
4  * (C) Copyright 2001-2003 Wojtek Kaniewski <wojtekka@irc.pl>
5  * Robert J. Woźny <speedy@ziew.org>
6  * Paweł Maziarz <drg@go2.pl>
7  * Dawid Jarosz <dawjar@poczta.onet.pl>
8  * Piotr Domagalski <szalik@szalik.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License Version 2 as
12  * published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23 
24 #ifndef __EKG_CONFIGFILE_H
25 #define __EKG_CONFIGFILE_H
26 
27 #ifndef EKG2_WIN32_NOFUNCTION
28 
29 #include "plugins.h"
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
35 void config_postread();
36 int config_read(const char *filename);
38 int config_read_later(const char *filename);
39 int config_write();
40 int config_write_partly(plugin_t *plugin, const char **vars);
41 void config_write_crash();
42 void debug_write_crash();
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif
49 
50 #endif /* __EKG_CONFIGFILE_H */
51 
52 /*
53  * Local Variables:
54  * mode: c
55  * c-file-style: "k&r"
56  * c-basic-offset: 8
57  * indent-tabs-mode: t
58  * End:
59  */