OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef PKISTORE_H | 5 #ifndef PKISTORE_H |
6 #define PKISTORE_H | 6 #define PKISTORE_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char PKISTORE_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 #ifndef NSSPKIT_H | 8 #ifndef NSSPKIT_H |
13 #include "nsspkit.h" | 9 #include "nsspkit.h" |
14 #endif /* NSSPKIT_H */ | 10 #endif /* NSSPKIT_H */ |
15 | 11 |
16 #ifndef BASE_H | 12 #ifndef BASE_H |
17 #include "base.h" | 13 #include "base.h" |
18 #endif /* BASE_H */ | 14 #endif /* BASE_H */ |
19 | 15 |
20 PR_BEGIN_EXTERN_C | 16 PR_BEGIN_EXTERN_C |
21 | 17 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 nssCertificateStore_DumpStoreInfo | 159 nssCertificateStore_DumpStoreInfo |
164 ( | 160 ( |
165 nssCertificateStore *store, | 161 nssCertificateStore *store, |
166 void (* cert_dump_iter)(const void *, void *, void *), | 162 void (* cert_dump_iter)(const void *, void *, void *), |
167 void *arg | 163 void *arg |
168 ); | 164 ); |
169 | 165 |
170 PR_END_EXTERN_C | 166 PR_END_EXTERN_C |
171 | 167 |
172 #endif /* PKISTORE_H */ | 168 #endif /* PKISTORE_H */ |
OLD | NEW |