| OLD | NEW |
| (Empty) |
| 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 | |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
| 4 | |
| 5 #ifndef CK_H | |
| 6 #define CK_H | |
| 7 | |
| 8 #ifdef DEBUG | |
| 9 static const char CK_CVS_ID[] = "@(#) $RCSfile: ck.h,v $ $Revision: 1.4 $ $Date:
2012/04/25 14:49:28 $"; | |
| 10 #endif /* DEBUG */ | |
| 11 | |
| 12 /* | |
| 13 * ck.h | |
| 14 * | |
| 15 * This header file consolidates all header files needed by the source | |
| 16 * files implementing the NSS Cryptoki Framework. This makes managing | |
| 17 * the source files a bit easier. | |
| 18 */ | |
| 19 | |
| 20 /* Types */ | |
| 21 | |
| 22 #ifndef NSSBASET_H | |
| 23 #include "nssbaset.h" | |
| 24 #endif /* NSSBASET_H */ | |
| 25 | |
| 26 #ifndef NSSCKT_H | |
| 27 #include "nssckt.h" | |
| 28 #endif /* NSSCKT_H */ | |
| 29 | |
| 30 #ifndef NSSCKFT_H | |
| 31 #include "nssckft.h" | |
| 32 #endif /* NSSCKFT_H */ | |
| 33 | |
| 34 #ifndef NSSCKEPV_H | |
| 35 #include "nssckepv.h" | |
| 36 #endif /* NSSCKEPV_H */ | |
| 37 | |
| 38 #ifndef NSSCKFWT_H | |
| 39 #include "nssckfwt.h" | |
| 40 #endif /* NSSCKFWT_H */ | |
| 41 | |
| 42 #ifndef NSSCKMDT_H | |
| 43 #include "nssckmdt.h" | |
| 44 #endif /* NSSCKMDT_H */ | |
| 45 | |
| 46 #ifndef CKT_H | |
| 47 #include "ckt.h" | |
| 48 #endif /* CKT_H */ | |
| 49 | |
| 50 #ifndef CKFWTM_H | |
| 51 #include "ckfwtm.h" | |
| 52 #endif /* CKFWTM_H */ | |
| 53 | |
| 54 /* Prototypes */ | |
| 55 | |
| 56 #ifndef NSSBASE_H | |
| 57 #include "nssbase.h" | |
| 58 #endif /* NSSBASE_H */ | |
| 59 | |
| 60 #ifndef NSSCKG_H | |
| 61 #include "nssckg.h" | |
| 62 #endif /* NSSCKG_H */ | |
| 63 | |
| 64 #ifndef NSSCKFW_H | |
| 65 #include "nssckfw.h" | |
| 66 #endif /* NSSCKFW_H */ | |
| 67 | |
| 68 #ifndef NSSCKFWC_H | |
| 69 #include "nssckfwc.h" | |
| 70 #endif /* NSSCKFWC_H */ | |
| 71 | |
| 72 #ifndef CKFW_H | |
| 73 #include "ckfw.h" | |
| 74 #endif /* CKFW_H */ | |
| 75 | |
| 76 #ifndef CKFWM_H | |
| 77 #include "ckfwm.h" | |
| 78 #endif /* CKFWM_H */ | |
| 79 | |
| 80 #ifndef CKMD_H | |
| 81 #include "ckmd.h" | |
| 82 #endif /* CKMD_H */ | |
| 83 | |
| 84 /* NSS-private */ | |
| 85 | |
| 86 /* nss_ZNEW and the like. We might want to publish the memory APIs.. */ | |
| 87 | |
| 88 #ifndef BASE_H | |
| 89 #include "base.h" | |
| 90 #endif /* BASE_H */ | |
| 91 | |
| 92 #endif /* CK_H */ | |
| OLD | NEW |