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 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
4 * | 4 * |
5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
9 * | 9 * |
10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 #define PR_NAME "NSPR" | 56 #define PR_NAME "NSPR" |
57 | 57 |
58 /* | 58 /* |
59 ** NSPR's version is used to determine the likelihood that the version you | 59 ** NSPR's version is used to determine the likelihood that the version you |
60 ** used to build your component is anywhere close to being compatible with | 60 ** used to build your component is anywhere close to being compatible with |
61 ** what is in the underlying library. | 61 ** what is in the underlying library. |
62 ** | 62 ** |
63 ** The format of the version string is | 63 ** The format of the version string is |
64 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" | 64 ** "<major version>.<minor version>[.<patch level>] [<Beta>]" |
65 */ | 65 */ |
66 #define PR_VERSION "4.8.4 Beta" | 66 #define PR_VERSION "4.8.4" |
67 #define PR_VMAJOR 4 | 67 #define PR_VMAJOR 4 |
68 #define PR_VMINOR 8 | 68 #define PR_VMINOR 8 |
69 #define PR_VPATCH 4 | 69 #define PR_VPATCH 4 |
70 #define PR_BETA PR_TRUE | 70 #define PR_BETA PR_FALSE |
71 | 71 |
72 /* | 72 /* |
73 ** PRVersionCheck | 73 ** PRVersionCheck |
74 ** | 74 ** |
75 ** The basic signature of the function that is called to provide version | 75 ** The basic signature of the function that is called to provide version |
76 ** checking. The result will be a boolean that indicates the likelihood | 76 ** checking. The result will be a boolean that indicates the likelihood |
77 ** that the underling library will perform as the caller expects. | 77 ** that the underling library will perform as the caller expects. |
78 ** | 78 ** |
79 ** The only argument is a string, which should be the verson identifier | 79 ** The only argument is a string, which should be the verson identifier |
80 ** of the library in question. That string will be compared against an | 80 ** of the library in question. That string will be compared against an |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 NSPR_API(PRStatus) PR_CallOnceWithArg( | 233 NSPR_API(PRStatus) PR_CallOnceWithArg( |
234 PRCallOnceType *once, | 234 PRCallOnceType *once, |
235 PRCallOnceWithArgFN func, | 235 PRCallOnceWithArgFN func, |
236 void *arg | 236 void *arg |
237 ); | 237 ); |
238 | 238 |
239 | 239 |
240 PR_END_EXTERN_C | 240 PR_END_EXTERN_C |
241 | 241 |
242 #endif /* prinit_h___ */ | 242 #endif /* prinit_h___ */ |
OLD | NEW |