RetroZilla/security/nss/lib/util/nssutil.h

42 lines
983 B
C
Raw Normal View History

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
*/
#define NSSUTIL_VERSION "3.17.2.1"
2015-10-21 05:03:22 +02:00
#define NSSUTIL_VMAJOR 3
#define NSSUTIL_VMINOR 17
#define NSSUTIL_VPATCH 2
#define NSSUTIL_VBUILD 1
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_ */