1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/nss/lib/util/nssutil.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +/* 1.5 + * NSS utility functions 1.6 + * 1.7 + * This Source Code Form is subject to the terms of the Mozilla Public 1.8 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.9 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.10 + 1.11 +#ifndef __nssutil_h_ 1.12 +#define __nssutil_h_ 1.13 + 1.14 +#ifndef RC_INVOKED 1.15 +#include "seccomon.h" 1.16 +#endif 1.17 + 1.18 +/* 1.19 + * NSS utilities's major version, minor version, patch level, build number, 1.20 + * and whether this is a beta release. 1.21 + * 1.22 + * The format of the version string should be 1.23 + * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>]" 1.24 + */ 1.25 +#define NSSUTIL_VERSION "3.16.2.3" 1.26 +#define NSSUTIL_VMAJOR 3 1.27 +#define NSSUTIL_VMINOR 16 1.28 +#define NSSUTIL_VPATCH 2 1.29 +#define NSSUTIL_VBUILD 3 1.30 +#define NSSUTIL_BETA PR_FALSE 1.31 + 1.32 +SEC_BEGIN_PROTOS 1.33 + 1.34 +/* 1.35 + * Returns a const string of the UTIL library version. 1.36 + */ 1.37 +extern const char *NSSUTIL_GetVersion(void); 1.38 + 1.39 +extern SECStatus 1.40 +NSS_InitializePRErrorTable(void); 1.41 + 1.42 +SEC_END_PROTOS 1.43 + 1.44 +#endif /* __nssutil_h_ */