view src/win32/VersionInfo.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 #ifndef VBA_VERSIONINFO_H
2 #define VBA_VERSIONINFO_H
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
8 #include "../version.h"
10 #if SVN_REV > 65535
11 # define VBA_RR_BUILD_NO 0
12 #else
13 # define VBA_RR_BUILD_NO SVN_REV
14 #endif
16 // diaplayed in the file attribute dialog
17 #define VBA_VERSIONINFO_FILEVER 7, VBA_RR_MAJOR_VERSION_NO, VBA_RR_MINOR_VERSION_NO, VBA_RR_BUILD_NO
18 #define VBA_VERSIONINFO_STRFILEVER STRINGIZE_VALUE(VBA_VERSIONINFO_FILEVER) "\0"
20 #define VBA_VERSIONINFO_PRODUCTVER VBA_VERSIONINFO_FILEVER
21 #define VBA_VERSIONINFO_STRPRODUCTVER VBA_VERSIONINFO_STRFILEVER
22 #define VBA_VERSIONINFO_STRCOPYRIGHT "Copyright (C) 2005-2011 VBA-RR Development Team"
23 #define VBA_VERSIONINFO_ORGANIZATION VBA_RR_SITE
25 #ifdef _DEBUG
26 # define VBA_VERSIONINFO_FILEFLAGS VS_FF_DEBUG
27 #elif defined(PUBLIC_RELEASE)
28 # define VBA_VERSIONINFO_FILEFLAGS 0
29 #else
30 # define VBA_VERSIONINFO_FILEFLAGS VS_FF_PRERELEASE
31 #endif
33 #endif // VBA_VERSIONINFO_H