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 #ifdef DEBUG | |
6 static const char BUILTINS_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 #include "nssckmdt.h" | 5 #include "nssckmdt.h" |
10 #include "nssckfw.h" | 6 #include "nssckfw.h" |
11 | 7 |
12 /* | 8 /* |
13 * I'm including this for access to the arena functions. | 9 * I'm including this for access to the arena functions. |
14 * Looks like we should publish that API. | 10 * Looks like we should publish that API. |
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 */ |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 CK_RV *pError | 63 CK_RV *pError |
68 ); | 64 ); |
69 | 65 |
70 NSS_EXTERN NSSCKMDObject * | 66 NSS_EXTERN NSSCKMDObject * |
71 nss_builtins_CreateMDObject | 67 nss_builtins_CreateMDObject |
72 ( | 68 ( |
73 NSSArena *arena, | 69 NSSArena *arena, |
74 builtinsInternalObject *io, | 70 builtinsInternalObject *io, |
75 CK_RV *pError | 71 CK_RV *pError |
76 ); | 72 ); |
OLD | NEW |