rlm@1: #ifndef VBA_VERSIONINFO_H rlm@1: #define VBA_VERSIONINFO_H rlm@1: rlm@1: #if _MSC_VER > 1000 rlm@1: #pragma once rlm@1: #endif // _MSC_VER > 1000 rlm@1: rlm@1: #include "../version.h" rlm@1: rlm@1: #if SVN_REV > 65535 rlm@1: # define VBA_RR_BUILD_NO 0 rlm@1: #else rlm@1: # define VBA_RR_BUILD_NO SVN_REV rlm@1: #endif rlm@1: rlm@1: // diaplayed in the file attribute dialog rlm@1: #define VBA_VERSIONINFO_FILEVER 7, VBA_RR_MAJOR_VERSION_NO, VBA_RR_MINOR_VERSION_NO, VBA_RR_BUILD_NO rlm@1: #define VBA_VERSIONINFO_STRFILEVER STRINGIZE_VALUE(VBA_VERSIONINFO_FILEVER) "\0" rlm@1: rlm@1: #define VBA_VERSIONINFO_PRODUCTVER VBA_VERSIONINFO_FILEVER rlm@1: #define VBA_VERSIONINFO_STRPRODUCTVER VBA_VERSIONINFO_STRFILEVER rlm@1: #define VBA_VERSIONINFO_STRCOPYRIGHT "Copyright (C) 2005-2011 VBA-RR Development Team" rlm@1: #define VBA_VERSIONINFO_ORGANIZATION VBA_RR_SITE rlm@1: rlm@1: #ifdef _DEBUG rlm@1: # define VBA_VERSIONINFO_FILEFLAGS VS_FF_DEBUG rlm@1: #elif defined(PUBLIC_RELEASE) rlm@1: # define VBA_VERSIONINFO_FILEFLAGS 0 rlm@1: #else rlm@1: # define VBA_VERSIONINFO_FILEFLAGS VS_FF_PRERELEASE rlm@1: #endif rlm@1: rlm@1: #endif // VBA_VERSIONINFO_H