X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?p=evaf;a=blobdiff_plain;f=src%2Fapps%2FScosTime%2Fversion.h;fp=src%2Fapps%2FScosTime%2Fversion.h;h=d3a0b51a81dda1e33e6c6d931ec5d942a59cfc51;hp=0000000000000000000000000000000000000000;hb=84f796df7f84e8e13efb68bbe1cb9f5c804c2228;hpb=fd3633df6c6a527ea2af8a4beddcf17f06eccc34 diff --git a/src/apps/ScosTime/version.h b/src/apps/ScosTime/version.h new file mode 100644 index 0000000..d3a0b51 --- /dev/null +++ b/src/apps/ScosTime/version.h @@ -0,0 +1,60 @@ +/** + * @file ScosTime/version.h + * @brief Version information for eVaf modules + * @author Enar Vaikene + * + * Copyright (c) 2012 Enar Vaikene + * + * This file is part of the eVaf C++ cross-platform application development framework. + * + * This file can be used under the terms of the GNU General Public License + * version 3.0 as published by the Free Software Foundation and appearing in + * the file LICENSE included in the packaging of this file. Please review the + * the following information to ensure the GNU General Public License version + * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + * + * Alternatively, this file may be used in accordance with the Commercial License + * Agreement provided with the Software. + */ + +#ifndef __SCOSTIME_VERSION_H +# define __SCOSTIME_VERSION_H + +#include + +/** + * Module/library version number in the form major,minor,release,build + */ +#define VER_FILE_VERSION 0,1,1,1 + +/** + * Module/library version number in the string format (shall end with \0) + */ +#define VER_FILE_VERSION_STR "0.1.1.1\0" + +/** + * Module/library name (shall end with \0) + */ +#define VER_MODULE_NAME_STR "ScosTime\0" + +/** + * Module type (see version_rc.h for all the types) + */ +#define VER_MODULE_TYPE MT_GENERIC + +/** + * Module type in the string format (see version_rc for all the types) + */ +#define VER_MODULE_TYPE_STR MT_GENERIC + +/** + * Original file name for windows (shall end with \0) + */ +#define VER_ORIGINAL_FILE_NAME_STR "ScosTime.dll\0" + +/** + * Description of the module/library (shall end with \0) + */ +#define VER_FILE_DESCRIPTION_STR "Small tool to encode and decode date/time values.\0" + +#endif // version.h