Updated the copyright year.
[pwmd.git] / src / rcfile.h
blobe81bf316a274d54daaac83630be5c7d50e302ea0
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2011 Ben Kibbey <bjk@luxsci.net>
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 2 of the License, or
8 (at your option) any later version.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
19 #ifndef RCFILE_H
20 #define RCFILE_H
22 #ifdef WITH_PINENTRY
23 #define DEFAULT_PIN_TIMEOUT 30
24 #endif
26 #ifdef HAVE_MLOCKALL
27 extern gboolean disable_mlock;
28 #endif
29 extern gchar *logfile;
30 extern gchar *rcfile;
31 extern gboolean cmdline;
32 extern gint max_recursion_depth;
33 extern gboolean disable_list_and_dump;
35 gboolean parse_rcfile_keys();
36 gboolean get_key_file_boolean(const gchar *section, const gchar *what);
37 gdouble get_key_file_double(const gchar *section, const gchar *what);
38 gint get_key_file_integer(const gchar *section, const gchar *what);
39 gchar *get_key_file_string(const gchar *section, const gchar *what);
40 gpg_error_t parse_rcfile_keyfile(struct crypto_s *, const gchar *filename, gboolean import);
41 void clear_rcfile_keys();
42 GKeyFile *parse_rcfile(gboolean specified);
43 void set_rcfile_defaults(GKeyFile *kf);
44 void setup_logging(GKeyFile *kf);
46 #endif