michael@0: /* michael@0: * NSS utility functions michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef __nssutil_h_ michael@0: #define __nssutil_h_ michael@0: michael@0: #ifndef RC_INVOKED michael@0: #include "seccomon.h" michael@0: #endif michael@0: michael@0: /* michael@0: * NSS utilities's major version, minor version, patch level, build number, michael@0: * and whether this is a beta release. michael@0: * michael@0: * The format of the version string should be michael@0: * ".[.[.]][ ]" michael@0: */ michael@0: #define NSSUTIL_VERSION "3.16.2.3" michael@0: #define NSSUTIL_VMAJOR 3 michael@0: #define NSSUTIL_VMINOR 16 michael@0: #define NSSUTIL_VPATCH 2 michael@0: #define NSSUTIL_VBUILD 3 michael@0: #define NSSUTIL_BETA PR_FALSE michael@0: michael@0: SEC_BEGIN_PROTOS michael@0: michael@0: /* michael@0: * Returns a const string of the UTIL library version. michael@0: */ michael@0: extern const char *NSSUTIL_GetVersion(void); michael@0: michael@0: extern SECStatus michael@0: NSS_InitializePRErrorTable(void); michael@0: michael@0: SEC_END_PROTOS michael@0: michael@0: #endif /* __nssutil_h_ */