Change license to GPLv3.
[jelmer/ctrlproxy.git] / src / log_support.h
1 /*
2         ctrlproxy: A modular IRC proxy
3         (c) 2002-2007 Jelmer Vernooij <jelmer@nl.linux.org>
4
5         This program is free software; you can redistribute it and/or modify
6         it under the terms of the GNU General Public License as published by
7         the Free Software Foundation; either version 3 of the License, or
8         (at your option) any later version.
9
10         This program is distributed in the hope that it will be useful,
11         but WITHOUT ANY WARRANTY; without even the implied warranty of
12         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13         GNU General Public License for more details.
14
15         You should have received a copy of the GNU General Public License
16         along with this program; if not, write to the Free Software
17         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef _CTRLPROXY_LOG_SUPPORT_H_
21 #define _CTRLPROXY_LOG_SUPPORT_H_
22
23 #include <stdio.h>
24
25 struct log_file_info {
26         FILE *file;
27         time_t last_used;
28 };
29
30 struct log_support_context {
31         GHashTable *files;
32         int num_opened;
33 };
34
35 G_MODULE_EXPORT G_GNUC_MALLOC struct log_support_context *log_support_init(void);
36 G_MODULE_EXPORT gboolean log_support_write(struct log_support_context *ctx, 
37                                                    const char *path,
38                                                    const char *text);
39 G_MODULE_EXPORT G_GNUC_PRINTF(3, 4) void log_support_writef(struct log_support_context *ctx, 
40                                            const char *path,
41                                            const char *fmt, ...);
42 G_MODULE_EXPORT void free_log_support_context(struct log_support_context *);
43
44 #endif /* _CTRLPROXY_LOG_SUPPORT_H_ */