~ubuntu-branches/ubuntu/jaunty/gnupg2/jaunty

« back to all changes in this revision

Viewing changes to tools/gpgconf.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-03-29 10:30:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050329103032-sj42n2ain3ipx310
Tags: upstream-1.9.15
ImportĀ upstreamĀ versionĀ 1.9.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* gpgconf.h - Global definitions for gpgconf
 
2
 *      Copyright (C) 2003 Free Software Foundation, Inc.
 
3
 *
 
4
 * This file is part of GnuPG.
 
5
 *
 
6
 * GnuPG is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * GnuPG is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
19
 */
 
20
 
 
21
#ifndef GPGCONF_H
 
22
#define GPGCONF_H
 
23
 
 
24
#include "../common/util.h"
 
25
 
 
26
/* We keep all global options in the structure OPT.  */
 
27
struct
 
28
{
 
29
  int verbose;          /* Verbosity level.  */
 
30
  int quiet;            /* Be extra quiet.  */
 
31
  int dry_run;          /* Don't change any persistent data.  */
 
32
  int runtime;          /* Make changes active at runtime.  */
 
33
  char *outfile;        /* Name of output file.  */
 
34
 
 
35
  int component;        /* The active component.  */
 
36
} opt;
 
37
 
 
38
 
 
39
 
 
40
/*-- gpgconf-comp.c --*/
 
41
/* List all components that are available.  */
 
42
void gc_component_list_components (FILE *out);
 
43
 
 
44
/* Find the component with the name NAME.  Returns -1 if not
 
45
   found.  */
 
46
int gc_component_find (const char *name);
 
47
 
 
48
/* Retrieve the currently active options and their defaults from all
 
49
   involved backends for this component.  */
 
50
void gc_component_retrieve_options (int component);
 
51
 
 
52
/* List all options of the component COMPONENT.  */
 
53
void gc_component_list_options (int component, FILE *out);
 
54
 
 
55
/* Read the modifications from IN and apply them.  */
 
56
void gc_component_change_options (int component, FILE *in);
 
57
 
 
58
#endif /*GPGCONF_H*/