| OLD | NEW |
| 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
| 2 /* This Source Code Form is subject to the terms of the Mozilla Public | 2 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 5 | 5 |
| 6 #ifndef prinit_h___ | 6 #ifndef prinit_h___ |
| 7 #define prinit_h___ | 7 #define prinit_h___ |
| 8 | 8 |
| 9 #include "prthread.h" | 9 #include "prthread.h" |
| 10 #include "prtypes.h" | 10 #include "prtypes.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #define PR_NAME "NSPR" | 24 #define PR_NAME "NSPR" |
| 25 | 25 |
| 26 /* | 26 /* |
| 27 ** NSPR's version is used to determine the likelihood that the version you | 27 ** NSPR's version is used to determine the likelihood that the version you |
| 28 ** used to build your component is anywhere close to being compatible with | 28 ** used to build your component is anywhere close to being compatible with |
| 29 ** what is in the underlying library. | 29 ** what is in the underlying library. |
| 30 ** | 30 ** |
| 31 ** The format of the version string is | 31 ** The format of the version string is |
| 32 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" | 32 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" |
| 33 */ | 33 */ |
| 34 #define PR_VERSION "4.11" | 34 #define PR_VERSION "4.12" |
| 35 #define PR_VMAJOR 4 | 35 #define PR_VMAJOR 4 |
| 36 #define PR_VMINOR 11 | 36 #define PR_VMINOR 12 |
| 37 #define PR_VPATCH 0 | 37 #define PR_VPATCH 0 |
| 38 #define PR_BETA PR_FALSE | 38 #define PR_BETA PR_FALSE |
| 39 | 39 |
| 40 /* | 40 /* |
| 41 ** PRVersionCheck | 41 ** PRVersionCheck |
| 42 ** | 42 ** |
| 43 ** The basic signature of the function that is called to provide version | 43 ** The basic signature of the function that is called to provide version |
| 44 ** checking. The result will be a boolean that indicates the likelihood | 44 ** checking. The result will be a boolean that indicates the likelihood |
| 45 ** that the underling library will perform as the caller expects. | 45 ** that the underling library will perform as the caller expects. |
| 46 ** | 46 ** |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 NSPR_API(PRStatus) PR_CallOnceWithArg( | 206 NSPR_API(PRStatus) PR_CallOnceWithArg( |
| 207 PRCallOnceType *once, | 207 PRCallOnceType *once, |
| 208 PRCallOnceWithArgFN func, | 208 PRCallOnceWithArgFN func, |
| 209 void *arg | 209 void *arg |
| 210 ); | 210 ); |
| 211 | 211 |
| 212 | 212 |
| 213 PR_END_EXTERN_C | 213 PR_END_EXTERN_C |
| 214 | 214 |
| 215 #endif /* prinit_h___ */ | 215 #endif /* prinit_h___ */ |
| OLD | NEW |