1 /*
2  * gnome-keyring
3  *
4  * Copyright (C) 2008 Stefan Walter
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef __GKM_TYPES_H__
22 #define __GKM_TYPES_H__
23 
24 typedef struct _GkmAesKey GkmAesKey;
25 typedef struct _GkmAssertion GkmAssertion;
26 typedef struct _GkmCertificate GkmCertificate;
27 typedef struct _GkmCertificateKey GkmCertificateKey;
28 typedef struct _GkmCredential GkmCredential;
29 typedef struct _GkmDhKey GkmDhKey;
30 typedef struct _GkmDhPrivateKey GkmDhPrivateKey;
31 typedef struct _GkmDhPublicKey GkmDhPublicKey;
32 typedef struct _GkmFactory GkmFactory;
33 typedef struct _GkmGenericKey GkmGenericKey;
34 typedef struct _GkmManager GkmManager;
35 typedef struct _GkmModule GkmModule;
36 typedef struct _GkmNullKey GkmNullKey;
37 typedef struct _GkmObject GkmObject;
38 typedef struct _GkmPrivateXsaKey GkmPrivateXsaKey;
39 typedef struct _GkmPublicXsaKey GkmPublicXsaKey;
40 typedef struct _GkmSecret GkmSecret;
41 typedef struct _GkmSecretKey GkmSecretKey;
42 typedef struct _GkmSession GkmSession;
43 typedef struct _GkmSessionPrivateKey GkmSessionPrivateKey;
44 typedef struct _GkmSessionPublicKey GkmSessionPublicKey;
45 typedef struct _GkmSexp GkmSexp;
46 typedef struct _GkmSexpKey GkmSexpKey;
47 typedef struct _GkmStore GkmStore;
48 typedef struct _GkmTimer GkmTimer;
49 typedef struct _GkmTransaction GkmTransaction;
50 typedef struct _GkmTrust GkmTrust;
51 
52 #endif /* __GKM_TYPES_H__ */
53