]>
vaikene.ee Git - evaf/blob - src/libs/Plugins/version.h
1a47b8ac4baf736e32c06e6aaf7f6bb2dbefefb7
2 * @file Plugins/version.h
3 * @brief Version information for eVaf modules
6 * Copyright (c) 2011 Enar Vaikene
8 * This file is part of the eVaf C++ cross-platform application development framework.
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.
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
20 #ifndef __PLUGINS_VERSION_H
21 #define __PLUGINS_VERSION_H
23 #include <version_rc.h>
26 * Module/library version number in the form major,minor,release,build
28 #define VER_FILE_VERSION 0,1,1,3
31 * Module/library version number in the string format (shall end with \0)
33 #define VER_FILE_VERSION_STR "0.1.1.3\0"
36 * Module/library name (shall end with \0)
38 #define VER_MODULE_NAME_STR "PluginsLib\0"
41 * Module type (see version_rc.h for all the types)
43 #define VER_MODULE_TYPE MT_GENERIC
46 * Module type in the string format (see version_rc for all the types)
48 #define VER_MODULE_TYPE_STR MT_GENERIC
51 * Original file name for windows (shall end with \0)
53 #define VER_ORIGINAL_FILE_NAME_STR "PluginsLib.dll\0"
56 * Description of the module/library (shall end with \0)
58 #define VER_FILE_DESCRIPTION_STR "Library for eVaf applications that loads external modules into the application.\0"