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