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 PKI_H | 5 #ifndef PKI_H |
6 #define PKI_H | 6 #define PKI_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char PKI_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 #ifndef NSSDEVT_H | 8 #ifndef NSSDEVT_H |
13 #include "nssdevt.h" | 9 #include "nssdevt.h" |
14 #endif /* NSSDEVT_H */ | 10 #endif /* NSSDEVT_H */ |
15 | 11 |
16 #ifndef NSSPKI_H | 12 #ifndef NSSPKI_H |
17 #include "nsspki.h" | 13 #include "nsspki.h" |
18 #endif /* NSSPKI_H */ | 14 #endif /* NSSPKI_H */ |
19 | 15 |
20 #ifndef PKIT_H | 16 #ifndef PKIT_H |
21 #include "pkit.h" | 17 #include "pkit.h" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 nssSMIMEProfile_Create | 204 nssSMIMEProfile_Create |
209 ( | 205 ( |
210 NSSCertificate *cert, | 206 NSSCertificate *cert, |
211 NSSItem *profileTime, | 207 NSSItem *profileTime, |
212 NSSItem *profileData | 208 NSSItem *profileData |
213 ); | 209 ); |
214 | 210 |
215 PR_END_EXTERN_C | 211 PR_END_EXTERN_C |
216 | 212 |
217 #endif /* PKI_H */ | 213 #endif /* PKI_H */ |
OLD | NEW |