security/nss/lib/ckfw/ck.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/nss/lib/ckfw/ck.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,88 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +#ifndef CK_H
     1.9 +#define CK_H
    1.10 +
    1.11 +/*
    1.12 + * ck.h
    1.13 + *
    1.14 + * This header file consolidates all header files needed by the source
    1.15 + * files implementing the NSS Cryptoki Framework.  This makes managing
    1.16 + * the source files a bit easier.
    1.17 + */
    1.18 +
    1.19 +/* Types */
    1.20 +
    1.21 +#ifndef NSSBASET_H
    1.22 +#include "nssbaset.h"
    1.23 +#endif /* NSSBASET_H */
    1.24 +
    1.25 +#ifndef NSSCKT_H
    1.26 +#include "nssckt.h"
    1.27 +#endif /* NSSCKT_H */
    1.28 +
    1.29 +#ifndef NSSCKFT_H
    1.30 +#include "nssckft.h"
    1.31 +#endif /* NSSCKFT_H */
    1.32 +
    1.33 +#ifndef NSSCKEPV_H
    1.34 +#include "nssckepv.h"
    1.35 +#endif /* NSSCKEPV_H */
    1.36 +
    1.37 +#ifndef NSSCKFWT_H
    1.38 +#include "nssckfwt.h"
    1.39 +#endif /* NSSCKFWT_H */
    1.40 +
    1.41 +#ifndef NSSCKMDT_H
    1.42 +#include "nssckmdt.h"
    1.43 +#endif /* NSSCKMDT_H */
    1.44 +
    1.45 +#ifndef CKT_H
    1.46 +#include "ckt.h"
    1.47 +#endif /* CKT_H */
    1.48 +
    1.49 +#ifndef CKFWTM_H
    1.50 +#include "ckfwtm.h"
    1.51 +#endif /* CKFWTM_H */
    1.52 +
    1.53 +/* Prototypes */
    1.54 +
    1.55 +#ifndef NSSBASE_H
    1.56 +#include "nssbase.h"
    1.57 +#endif /* NSSBASE_H */
    1.58 +
    1.59 +#ifndef NSSCKG_H
    1.60 +#include "nssckg.h"
    1.61 +#endif /* NSSCKG_H */
    1.62 +
    1.63 +#ifndef NSSCKFW_H
    1.64 +#include "nssckfw.h"
    1.65 +#endif /* NSSCKFW_H */
    1.66 +
    1.67 +#ifndef NSSCKFWC_H
    1.68 +#include "nssckfwc.h"
    1.69 +#endif /* NSSCKFWC_H */
    1.70 +
    1.71 +#ifndef CKFW_H
    1.72 +#include "ckfw.h"
    1.73 +#endif /* CKFW_H */
    1.74 +
    1.75 +#ifndef CKFWM_H
    1.76 +#include "ckfwm.h"
    1.77 +#endif /* CKFWM_H */
    1.78 +
    1.79 +#ifndef CKMD_H
    1.80 +#include "ckmd.h"
    1.81 +#endif /* CKMD_H */
    1.82 +
    1.83 +/* NSS-private */
    1.84 +
    1.85 +/* nss_ZNEW and the like.  We might want to publish the memory APIs.. */
    1.86 +
    1.87 +#ifndef BASE_H
    1.88 +#include "base.h"
    1.89 +#endif /* BASE_H */
    1.90 +
    1.91 +#endif /* CK_H */

mercurial