| 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 PKITM_H | 5 #ifndef PKITM_H |
| 6 #define PKITM_H | 6 #define PKITM_H |
| 7 | 7 |
| 8 #ifdef DEBUG | 8 #ifdef DEBUG |
| 9 static const char PKITM_CVS_ID[] = "@(#) $RCSfile: pkitm.h,v $ $Revision: 1.17 $
$Date: 2012/07/27 21:41:52 $"; | 9 static const char PKITM_CVS_ID[] = "@(#) $RCSfile: pkitm.h,v $ $Revision: 1.16 $
$Date: 2012/04/25 14:50:07 $"; |
| 10 #endif /* DEBUG */ | 10 #endif /* DEBUG */ |
| 11 | 11 |
| 12 /* | 12 /* |
| 13 * pkitm.h | 13 * pkitm.h |
| 14 * | 14 * |
| 15 * This file contains PKI-module specific types. | 15 * This file contains PKI-module specific types. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 #ifndef BASET_H | 18 #ifndef BASET_H |
| 19 #include "baset.h" | 19 #include "baset.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 PRStatus (* crl)(NSSCRL *crl, void *arg); | 80 PRStatus (* crl)(NSSCRL *crl, void *arg); |
| 81 PRStatus (* pvkey)(NSSPrivateKey *vk, void *arg); | 81 PRStatus (* pvkey)(NSSPrivateKey *vk, void *arg); |
| 82 PRStatus (* pbkey)(NSSPublicKey *bk, void *arg); | 82 PRStatus (* pbkey)(NSSPublicKey *bk, void *arg); |
| 83 } func; | 83 } func; |
| 84 void *arg; | 84 void *arg; |
| 85 } nssPKIObjectCallback; | 85 } nssPKIObjectCallback; |
| 86 | 86 |
| 87 PR_END_EXTERN_C | 87 PR_END_EXTERN_C |
| 88 | 88 |
| 89 #endif /* PKITM_H */ | 89 #endif /* PKITM_H */ |
| OLD | NEW |