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 NSSCKFW_H | 5 #ifndef NSSCKFW_H |
6 #define NSSCKFW_H | 6 #define NSSCKFW_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char NSSCKFW_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 /* | 8 /* |
13 * nssckfw.h | 9 * nssckfw.h |
14 * | 10 * |
15 * This file prototypes the publicly available calls of the | 11 * This file prototypes the publicly available calls of the |
16 * NSS Cryptoki Framework. | 12 * NSS Cryptoki Framework. |
17 */ | 13 */ |
18 | 14 |
19 #ifndef NSSBASET_H | 15 #ifndef NSSBASET_H |
20 #include "nssbaset.h" | 16 #include "nssbaset.h" |
21 #endif /* NSSBASET_H */ | 17 #endif /* NSSBASET_H */ |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 */ | 481 */ |
486 | 482 |
487 NSS_EXTERN CK_RV | 483 NSS_EXTERN CK_RV |
488 NSSCKFWMutex_Unlock | 484 NSSCKFWMutex_Unlock |
489 ( | 485 ( |
490 NSSCKFWMutex *mutex | 486 NSSCKFWMutex *mutex |
491 ); | 487 ); |
492 | 488 |
493 #endif /* NSSCKFW_H */ | 489 #endif /* NSSCKFW_H */ |
494 | 490 |
OLD | NEW |