Commit | Line | Data |
---|---|---|
b900a78b VK |
1 | /* |
2 | ** NetXMS - Network Management System | |
5096f5a5 | 3 | ** Copyright (C) 2003-2015 Victor Kirhenshtein |
b900a78b VK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
68f384ea VK |
6 | ** it under the terms of the GNU Lesser General Public License as published by |
7 | ** the Free Software Foundation; either version 3 of the License, or | |
b900a78b VK |
8 | ** (at your option) any later version. |
9 | ** | |
10 | ** This program is distributed in the hope that it will be useful, | |
11 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ** GNU General Public License for more details. | |
14 | ** | |
68f384ea | 15 | ** You should have received a copy of the GNU Lesser General Public License |
b900a78b VK |
16 | ** along with this program; if not, write to the Free Software |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
a0856b0d | 19 | ** File: netxms-version.h |
b900a78b VK |
20 | ** |
21 | **/ | |
22 | ||
23 | #ifndef _netxms_version_h_ | |
24 | #define _netxms_version_h_ | |
25 | ||
bfdba2df VK |
26 | #include "build.h" |
27 | ||
534e1b83 VK |
28 | /** |
29 | * Version constants | |
30 | */ | |
96db5512 VK |
31 | #define NETXMS_VERSION_MAJOR 2 |
32 | #define NETXMS_VERSION_MINOR 0 | |
89c46533 VK |
33 | #define NETXMS_VERSION_STRING _T("2.0-M4") |
34 | #define NETXMS_VERSION_STRING_A "2.0-M4" | |
5b7b9f00 | 35 | |
8e17001f VK |
36 | #ifdef UNICODE |
37 | #define IS_UNICODE_BUILD_STRING _T(" (UNICODE)") | |
38 | #else | |
39 | #define IS_UNICODE_BUILD_STRING _T(" (NON-UNICODE)") | |
40 | #endif | |
41 | ||
534e1b83 VK |
42 | /** |
43 | * Current client-server protocol version | |
44 | */ | |
c75e9ee4 | 45 | #define CLIENT_PROTOCOL_VERSION 46 |
5b7b9f00 | 46 | |
534e1b83 VK |
47 | /** |
48 | * Current mobile device protocol version | |
49 | */ | |
50 | #define MOBILE_DEVICE_PROTOCOL_VERSION 1 | |
b900a78b VK |
51 | |
52 | #endif |