1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/* $Id$
* Resource-definition script file for decNumber DLL (MSVC)
*
* This file was added by the Hercules project.
* It is not part of the original decNumber distribution.
*
* $Log$
*
*/
#include <winver.h>
#define DECNAME "decNumber" /* Short name */
#define DECVERSION "decNumber 3.37" /* Version [16 max.] */
#define DECFULLNAME "Decimal Number Module" /* Verbose name */
#define DECAUTHOR "Mike Cowlishaw" /* Who to blame */
#define DECCOPYRIGHT "Copyright (c) IBM Corporation, 2000, 2006"
#define DECLICENSE "ICU License -- ICU 1.8.1 and later"
#define DECVERMAJOR 3 /* Major version number */
#define DECVERMINOR 37 /* Minor version number */
#define SPECIALINFO "Built for Hercules"
1 VERSIONINFO
FILEVERSION DECVERMAJOR,DECVERMINOR,0,0
PRODUCTVERSION DECVERMAJOR,DECVERMINOR,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VS_FF_SPECIALBUILD
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0" /* US English, Unicode */
BEGIN
VALUE "Comments", DECLICENSE "\0"
VALUE "CompanyName", DECAUTHOR "\0"
VALUE "FileDescription", DECFULLNAME "\0"
VALUE "FileVersion", DECVERSION "\0"
VALUE "LegalCopyright", DECCOPYRIGHT "\0"
VALUE "ProductName", DECFULLNAME "\0"
VALUE "ProductVersion", DECVERSION "\0"
VALUE "SpecialBuild", SPECIALINFO "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation",0x409,0x4B0 /* US English, Unicode */
END
END
|