1/*
2 gpgmefw.h - Forwards declarations for gpgme (0.3 and 0.4)
3 Copyright (C) 2004 Klarälvdalens Datakonsult AB
4
5 This file is part of GPGME++.
6
7 GPGME++ is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
11
12 GPGME++ is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Library General Public License for more details.
16
17 You should have received a copy of the GNU Library General Public License
18 along with GPGME++; see the file COPYING.LIB. If not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21*/
22
23#ifndef __GPGMEPP_GPGMEFW_H__
24#define __GPGMEPP_GPGMEFW_H__
25
26struct gpgme_context;
27typedef gpgme_context * gpgme_ctx_t;
28
29struct gpgme_data;
30typedef gpgme_data * gpgme_data_t;
31
32struct gpgme_io_cbs;
33
34struct _gpgme_key;
35typedef struct _gpgme_key * gpgme_key_t;
36
37struct _gpgme_trust_item;
38typedef struct _gpgme_trust_item * gpgme_trust_item_t;
39
40struct _gpgme_subkey;
41typedef struct _gpgme_subkey * gpgme_sub_key_t;
42
43struct _gpgme_user_id;
44typedef struct _gpgme_user_id * gpgme_user_id_t;
45
46struct _gpgme_key_sig;
47typedef struct _gpgme_key_sig * gpgme_key_sig_t;
48
49struct _gpgme_sig_notation;
50typedef struct _gpgme_sig_notation * gpgme_sig_notation_t;
51
52struct _gpgme_engine_info;
53typedef struct _gpgme_engine_info * gpgme_engine_info_t;
54
55struct _gpgme_op_keylist_result;
56typedef struct _gpgme_op_keylist_result * gpgme_keylist_result_t;
57
58struct _gpgme_recipient;
59typedef struct _gpgme_recipient * gpgme_recipient_t;
60
61struct gpgme_conf_opt;
62typedef struct gpgme_conf_opt * gpgme_conf_opt_t;
63
64struct gpgme_conf_comp;
65typedef struct gpgme_conf_comp * gpgme_conf_comp_t;
66
67struct gpgme_conf_arg;
68typedef struct gpgme_conf_arg * gpgme_conf_arg_t;
69
70#endif // __GPGMEPP_GPGMEFW_H__
71