Commit | Line | Data |
---|---|---|
b900a78b VK |
1 | /* |
2 | ** NetXMS - Network Management System | |
bb74d420 | 3 | ** Copyright (C) 2003-2014 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 | */ | |
9e06b508 | 31 | #define NETXMS_VERSION_MAJOR 1 |
bb74d420 | 32 | #define NETXMS_VERSION_MINOR 2 |
8c2489aa VK |
33 | #define NETXMS_VERSION_RELEASE 14 |
34 | #define NETXMS_VERSION_STRING _T("1.2.14") | |
35 | #define NETXMS_VERSION_STRING_A "1.2.14" | |
5b7b9f00 | 36 | |
534e1b83 VK |
37 | /** |
38 | * Current client-server protocol version | |
39 | */ | |
3f4c195f | 40 | #define CLIENT_PROTOCOL_VERSION 42 |
5b7b9f00 | 41 | |
534e1b83 VK |
42 | /** |
43 | * Current mobile device protocol version | |
44 | */ | |
45 | #define MOBILE_DEVICE_PROTOCOL_VERSION 1 | |
b900a78b VK |
46 | |
47 | #endif |