]> vaikene.ee Git - evaf/blob - src/apps/FileFinder/GUI/version.h
Warning fixes and copyright update.
[evaf] / src / apps / FileFinder / GUI / version.h
1 /**
2 * @file FileFinder/GUI/version.h
3 * @brief Version information for eVaf modules
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011-2019 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #ifndef __FILEFINDER_GUI_VERSION_H
21 # define __FILEFINDER_GUI_VERSION_H
22
23 #include <version_rc.h>
24
25 /**
26 * Module/library version number in the form major,minor,release,build
27 */
28 #define VER_FILE_VERSION 0,1,5,6
29
30 /**
31 * Module/library version number in the string format (shall end with \0)
32 */
33 #define VER_FILE_VERSION_STR "0.1.5.6\0"
34
35 /**
36 * Module/library name (shall end with \0)
37 */
38 #define VER_MODULE_NAME_STR "FileFinderGui\0"
39
40 /**
41 * Module type (see version_rc.h for all the types)
42 */
43 #define VER_MODULE_TYPE MT_GENERIC
44
45 /**
46 * Module type in the string format (see version_rc for all the types)
47 */
48 #define VER_MODULE_TYPE_STR MT_GENERIC
49
50 /**
51 * Original file name for windows (shall end with \0)
52 */
53 #define VER_ORIGINAL_FILE_NAME_STR "FileFinderGui.dll\0"
54
55 /**
56 * Description of the module/library (shall end with \0)
57 */
58 #define VER_FILE_DESCRIPTION_STR "GUI for the FileFinder application.\0"
59
60 #endif // version.h