Added copyright/GPL header to all .c and .h files in trunk
[collectd.git] / src / users.h
1 /**
2  * collectd - src/users.h
3  * Copyright (C) 2005  Sebastian Harl
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Sebastian Harl <sh at tokkee.org>
21  **/
22
23 #ifndef USERS_H
24 #define USERS_H 1
25
26 #include "config.h"
27
28 #if !defined(HAVE_UTMPX_H) || !defined(HAVE_GETUTXENT)
29 #undef HAVE_UTMPX_H
30 #undef HAVE_GETUTXENT
31 #endif
32
33 #if !defined(HAVE_UTMP_H) || !defined(HAVE_GETUTENT)
34 #undef HAVE_UTMPX_H
35 #undef HAVE_GETUTXENT
36 #endif
37
38 #ifndef COLLECT_USERS
39 #if defined(HAVE_UTMPX_H) || defined(HAVE_UTMP_H)
40 #define COLLECT_USERS 1
41 #else
42 #define COLLECT_USERS 0
43 #endif
44 #endif /* ! defined(COLLECT_USERS) */
45
46 void users_init(void);
47 void users_read(void);
48 void users_submit(unsigned int);
49 void users_write(char *, char *, char *);
50
51 #endif /* ! defined(USERS_H) */
52