/****************************************************************************** * * Notepad2-mod * * Version.h * * See License.txt for details about distribution and modification. * * (c) XhmikosR 2010-2013 * https://github.com/XhmikosR/notepad2-mod * * ******************************************************************************/ #ifndef NOTEPAD2_VERSION_H #define NOTEPAD2_VERSION_H #include "VersionRev.h" #define DO_STRINGIFY(x) #x #define STRINGIFY(x) DO_STRINGIFY(x) #define VERSION_MAJOR 4 #define VERSION_MINOR 2 #define VERSION_BUILD 25 #define MY_APPNAME L"Notepad2-mod" #define VERSION_FILEVERSION_NUM VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_REV #define VERSION_FILEVERSION STRINGIFY(VERSION_MAJOR) "." STRINGIFY(VERSION_MINOR) "." STRINGIFY(VERSION_BUILD) "." STRINGIFY(VERSION_REV) #define VERSION_LEGALCOPYRIGHT_SHORT L"Copyright © 2004-2013" #define VERSION_LEGALCOPYRIGHT_LONG L"© Florian Balmer 2004-2013" #define VERSION_AUTHORNAME L"Florian Balmer" #define VERSION_WEBPAGEDISPLAY L"flo's freeware - http://www.flos-freeware.ch" #define VERSION_EMAILDISPLAY L"florian.balmer@gmail.com" #define VERSION_COMPANYNAME L"Florian Balmer et al." #define VERSION_MODPAGEDISPLAY L"http://xhmikosr.github.io/notepad2-mod/" #endif // NOTEPAD2_VERSION_H