1 /*
2  * version.h
3  *
4  * Version number header file for H323Plus.
5  *
6  * The contents of this file are subject to the Mozilla Public License
7  * Version 1.0 (the "License"); you may not use this file except in
8  * compliance with the License. You may obtain a copy of the License at
9  * http://www.mozilla.org/MPL/
10  *
11  * Software distributed under the License is distributed on an "AS IS"
12  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
13  * the License for the specific language governing rights and limitations
14  * under the License.
15  *
16  */
17 
18 #ifndef _H323PLUS_VERSION_H
19 #define _H323PLUS_VERSION_H
20 
21 
22 
23 /* WARNING: You MUST NOT add any comments to the #defines which follow
24    or add extra commented out #defines as this will confuse the parser
25    which extracts the version numbers
26  */
27 
28 #define MAJOR_VERSION 1
29 #define MINOR_VERSION 27
30 #define BUILD_TYPE    ReleaseCode
31 // only use single digit build numbers or the H323PLUS_VER macro breaks
32 #define BUILD_NUMBER 2
33 
34 
35 #endif  // _H323PLUS_VERSION_H
36 
37 
38 // End of File ///////////////////////////////////////////////////////////////
39