2015-10-21 05:03:22 +02:00
|
|
|
/*
|
|
|
|
* NSS utility functions
|
|
|
|
*
|
2018-05-04 16:08:28 +02:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2015-10-21 05:03:22 +02:00
|
|
|
|
|
|
|
#ifndef __nssutil_h_
|
|
|
|
#define __nssutil_h_
|
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
#ifndef RC_INVOKED
|
2015-10-21 05:03:22 +02:00
|
|
|
#include "seccomon.h"
|
2018-05-04 16:08:28 +02:00
|
|
|
#endif
|
2015-10-21 05:03:22 +02:00
|
|
|
|
|
|
|
/*
|
2018-05-04 16:08:28 +02:00
|
|
|
* NSS utilities's major version, minor version, patch level, build number,
|
|
|
|
* and whether this is a beta release.
|
2015-10-21 05:03:22 +02:00
|
|
|
*
|
|
|
|
* The format of the version string should be
|
2018-05-04 16:08:28 +02:00
|
|
|
* "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>]"
|
2015-10-21 05:03:22 +02:00
|
|
|
*/
|
2018-05-04 16:08:28 +02:00
|
|
|
#define NSSUTIL_VERSION "3.15.5"
|
2015-10-21 05:03:22 +02:00
|
|
|
#define NSSUTIL_VMAJOR 3
|
2018-05-04 16:08:28 +02:00
|
|
|
#define NSSUTIL_VMINOR 15
|
|
|
|
#define NSSUTIL_VPATCH 5
|
|
|
|
#define NSSUTIL_VBUILD 0
|
2015-10-21 05:03:22 +02:00
|
|
|
#define NSSUTIL_BETA PR_FALSE
|
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
SEC_BEGIN_PROTOS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns a const string of the UTIL library version.
|
|
|
|
*/
|
|
|
|
extern const char *NSSUTIL_GetVersion(void);
|
|
|
|
|
|
|
|
extern SECStatus
|
|
|
|
NSS_InitializePRErrorTable(void);
|
|
|
|
|
|
|
|
SEC_END_PROTOS
|
|
|
|
|
2015-10-21 05:03:22 +02:00
|
|
|
#endif /* __nssutil_h_ */
|