chiark / gitweb /
asshelp.c: add a lot of debug logging
[gnupg2.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 <https://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 /* Forward declaration for an object defined in call-syshelp.c.  */
29 struct call_syshelp_s;
30
31
32 /* Session control object.  This object is passed down to most
33    functions.  The default values for it are set by
34    g13_init_default_ctrl(). */
35 struct server_control_s
36 {
37   int no_server;      /* We are not running under server control */
38   int  status_fd;     /* Only for non-server mode */
39   struct server_local_s *server_local;
40   struct call_syshelp_s *syshelp_local;
41
42   int agent_seen;     /* Flag indicating that the gpg-agent has been
43                          accessed.  */
44
45   int with_colons;    /* Use column delimited output format */
46
47   /* Type of the current container.  See the CONTTYPE_ constants.  */
48   int conttype;
49
50   strlist_t recipients; /* List of recipients.  */
51
52 };
53
54
55 /*-- g13.c --*/
56 void g13_init_default_ctrl (ctrl_t ctrl);
57 void g13_deinit_default_ctrl (ctrl_t ctrl);
58 void g13_request_shutdown (void);
59
60 #endif /*G13_H*/