303c84bd0702fd812e7c077e5e66f19532c84a5d
[platform/upstream/gpg2.git] / g13 / g13.h
1 /* g13.h - Global definitions for G13.
2  * Copyright (C) 2009 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 3 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef G13_H
21 #define G13_H
22
23 #include "g13-common.h"
24
25
26 /* Forward declaration for an object defined in server.c.  */
27 struct server_local_s;
28
29 /* Session control object.  This object is passed down to most
30    functions.  The default values for it are set by
31    g13_init_default_ctrl(). */
32 struct server_control_s
33 {
34   int no_server;      /* We are not running under server control */
35   int  status_fd;     /* Only for non-server mode */
36   struct server_local_s *server_local;
37
38   int agent_seen;     /* Flag indicating that the gpg-agent has been
39                          accessed.  */
40
41   int with_colons;    /* Use column delimited output format */
42
43   /* Type of the current container.  See the CONTTYPE_ constants.  */
44   int conttype;
45
46 };
47
48
49 /*-- g13.c --*/
50 void g13_init_default_ctrl (struct server_control_s *ctrl);
51
52 #endif /*G13_H*/