Mercurial > vba-linux
view src/win32/VersionInfo.h @ 8:08a8e09ca414
add files required by automake
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:54:39 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 #ifndef VBA_VERSIONINFO_H2 #define VBA_VERSIONINFO_H4 #if _MSC_VER > 10005 #pragma once6 #endif // _MSC_VER > 10008 #include "../version.h"10 #if SVN_REV > 6553511 # define VBA_RR_BUILD_NO 012 #else13 # define VBA_RR_BUILD_NO SVN_REV14 #endif16 // diaplayed in the file attribute dialog17 #define VBA_VERSIONINFO_FILEVER 7, VBA_RR_MAJOR_VERSION_NO, VBA_RR_MINOR_VERSION_NO, VBA_RR_BUILD_NO18 #define VBA_VERSIONINFO_STRFILEVER STRINGIZE_VALUE(VBA_VERSIONINFO_FILEVER) "\0"20 #define VBA_VERSIONINFO_PRODUCTVER VBA_VERSIONINFO_FILEVER21 #define VBA_VERSIONINFO_STRPRODUCTVER VBA_VERSIONINFO_STRFILEVER22 #define VBA_VERSIONINFO_STRCOPYRIGHT "Copyright (C) 2005-2011 VBA-RR Development Team"23 #define VBA_VERSIONINFO_ORGANIZATION VBA_RR_SITE25 #ifdef _DEBUG26 # define VBA_VERSIONINFO_FILEFLAGS VS_FF_DEBUG27 #elif defined(PUBLIC_RELEASE)28 # define VBA_VERSIONINFO_FILEFLAGS 029 #else30 # define VBA_VERSIONINFO_FILEFLAGS VS_FF_PRERELEASE31 #endif33 #endif // VBA_VERSIONINFO_H