Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #ifndef CK_H |
michael@0 | 6 | #define CK_H |
michael@0 | 7 | |
michael@0 | 8 | /* |
michael@0 | 9 | * ck.h |
michael@0 | 10 | * |
michael@0 | 11 | * This header file consolidates all header files needed by the source |
michael@0 | 12 | * files implementing the NSS Cryptoki Framework. This makes managing |
michael@0 | 13 | * the source files a bit easier. |
michael@0 | 14 | */ |
michael@0 | 15 | |
michael@0 | 16 | /* Types */ |
michael@0 | 17 | |
michael@0 | 18 | #ifndef NSSBASET_H |
michael@0 | 19 | #include "nssbaset.h" |
michael@0 | 20 | #endif /* NSSBASET_H */ |
michael@0 | 21 | |
michael@0 | 22 | #ifndef NSSCKT_H |
michael@0 | 23 | #include "nssckt.h" |
michael@0 | 24 | #endif /* NSSCKT_H */ |
michael@0 | 25 | |
michael@0 | 26 | #ifndef NSSCKFT_H |
michael@0 | 27 | #include "nssckft.h" |
michael@0 | 28 | #endif /* NSSCKFT_H */ |
michael@0 | 29 | |
michael@0 | 30 | #ifndef NSSCKEPV_H |
michael@0 | 31 | #include "nssckepv.h" |
michael@0 | 32 | #endif /* NSSCKEPV_H */ |
michael@0 | 33 | |
michael@0 | 34 | #ifndef NSSCKFWT_H |
michael@0 | 35 | #include "nssckfwt.h" |
michael@0 | 36 | #endif /* NSSCKFWT_H */ |
michael@0 | 37 | |
michael@0 | 38 | #ifndef NSSCKMDT_H |
michael@0 | 39 | #include "nssckmdt.h" |
michael@0 | 40 | #endif /* NSSCKMDT_H */ |
michael@0 | 41 | |
michael@0 | 42 | #ifndef CKT_H |
michael@0 | 43 | #include "ckt.h" |
michael@0 | 44 | #endif /* CKT_H */ |
michael@0 | 45 | |
michael@0 | 46 | #ifndef CKFWTM_H |
michael@0 | 47 | #include "ckfwtm.h" |
michael@0 | 48 | #endif /* CKFWTM_H */ |
michael@0 | 49 | |
michael@0 | 50 | /* Prototypes */ |
michael@0 | 51 | |
michael@0 | 52 | #ifndef NSSBASE_H |
michael@0 | 53 | #include "nssbase.h" |
michael@0 | 54 | #endif /* NSSBASE_H */ |
michael@0 | 55 | |
michael@0 | 56 | #ifndef NSSCKG_H |
michael@0 | 57 | #include "nssckg.h" |
michael@0 | 58 | #endif /* NSSCKG_H */ |
michael@0 | 59 | |
michael@0 | 60 | #ifndef NSSCKFW_H |
michael@0 | 61 | #include "nssckfw.h" |
michael@0 | 62 | #endif /* NSSCKFW_H */ |
michael@0 | 63 | |
michael@0 | 64 | #ifndef NSSCKFWC_H |
michael@0 | 65 | #include "nssckfwc.h" |
michael@0 | 66 | #endif /* NSSCKFWC_H */ |
michael@0 | 67 | |
michael@0 | 68 | #ifndef CKFW_H |
michael@0 | 69 | #include "ckfw.h" |
michael@0 | 70 | #endif /* CKFW_H */ |
michael@0 | 71 | |
michael@0 | 72 | #ifndef CKFWM_H |
michael@0 | 73 | #include "ckfwm.h" |
michael@0 | 74 | #endif /* CKFWM_H */ |
michael@0 | 75 | |
michael@0 | 76 | #ifndef CKMD_H |
michael@0 | 77 | #include "ckmd.h" |
michael@0 | 78 | #endif /* CKMD_H */ |
michael@0 | 79 | |
michael@0 | 80 | /* NSS-private */ |
michael@0 | 81 | |
michael@0 | 82 | /* nss_ZNEW and the like. We might want to publish the memory APIs.. */ |
michael@0 | 83 | |
michael@0 | 84 | #ifndef BASE_H |
michael@0 | 85 | #include "base.h" |
michael@0 | 86 | #endif /* BASE_H */ |
michael@0 | 87 | |
michael@0 | 88 | #endif /* CK_H */ |