Commit | Line | Data |
---|---|---|
b900a78b VK |
1 | /* |
2 | ** NetXMS - Network Management System | |
e6a28e20 | 3 | ** Copyright (C) 2003-2012 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 | ||
26 | ||
27 | // | |
28 | // Version constants | |
29 | // | |
30 | ||
9e06b508 | 31 | #define NETXMS_VERSION_MAJOR 1 |
e6a28e20 | 32 | #define NETXMS_VERSION_MINOR 2 |
0de4a4b9 | 33 | #define NETXMS_VERSION_BUILD 5 |
aac3eb6a | 34 | #define NETXMS_VERSION_HOTFIX 0 |
0de4a4b9 VK |
35 | #define NETXMS_VERSION_STRING _T("1.2.5") |
36 | #define NETXMS_VERSION_STRING_A "1.2.5" | |
5b7b9f00 VK |
37 | |
38 | ||
39 | // | |
40 | // Current client-server protocol version | |
41 | // | |
42 | ||
c5c77583 | 43 | #define CLIENT_PROTOCOL_VERSION 34 |
b900a78b VK |
44 | |
45 | ||
46 | #endif |