|
||||
File indexing completed on 2025-01-18 10:02:26
0001 /* Copyright Joyent, Inc. and other Node contributors. All rights reserved. 0002 * 0003 * Permission is hereby granted, free of charge, to any person obtaining a copy 0004 * of this software and associated documentation files (the "Software"), to 0005 * deal in the Software without restriction, including without limitation the 0006 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 0007 * sell copies of the Software, and to permit persons to whom the Software is 0008 * furnished to do so, subject to the following conditions: 0009 * 0010 * The above copyright notice and this permission notice shall be included in 0011 * all copies or substantial portions of the Software. 0012 * 0013 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0014 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0015 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 0016 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 0017 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 0018 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 0019 * IN THE SOFTWARE. 0020 */ 0021 0022 #ifndef UV_VERSION_H 0023 #define UV_VERSION_H 0024 0025 /* 0026 * Versions with the same major number are ABI stable. API is allowed to 0027 * evolve between minor releases, but only in a backwards compatible way. 0028 * Make sure you update the -soname directives in configure.ac 0029 * whenever you bump UV_VERSION_MAJOR or UV_VERSION_MINOR (but 0030 * not UV_VERSION_PATCH.) 0031 */ 0032 0033 #define UV_VERSION_MAJOR 1 0034 #define UV_VERSION_MINOR 48 0035 #define UV_VERSION_PATCH 0 0036 #define UV_VERSION_IS_RELEASE 1 0037 #define UV_VERSION_SUFFIX "" 0038 0039 #define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \ 0040 (UV_VERSION_MINOR << 8) | \ 0041 (UV_VERSION_PATCH)) 0042 0043 #endif /* UV_VERSION_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |