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 PKIM_H | 5 #ifndef PKIM_H |
6 #define PKIM_H | 6 #define PKIM_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char PKIM_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 #ifndef BASE_H | 8 #ifndef BASE_H |
13 #include "base.h" | 9 #include "base.h" |
14 #endif /* BASE_H */ | 10 #endif /* BASE_H */ |
15 | 11 |
16 #ifndef PKI_H | 12 #ifndef PKI_H |
17 #include "pki.h" | 13 #include "pki.h" |
18 #endif /* PKI_H */ | 14 #endif /* PKI_H */ |
19 | 15 |
20 #ifndef PKITM_H | 16 #ifndef PKITM_H |
21 #include "pkitm.h" | 17 #include "pkitm.h" |
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 | 686 |
691 NSS_EXTERN void | 687 NSS_EXTERN void |
692 nssCertificateList_AddReferences | 688 nssCertificateList_AddReferences |
693 ( | 689 ( |
694 nssList *certList | 690 nssList *certList |
695 ); | 691 ); |
696 | 692 |
697 PR_END_EXTERN_C | 693 PR_END_EXTERN_C |
698 | 694 |
699 #endif /* PKIM_H */ | 695 #endif /* PKIM_H */ |
OLD | NEW |