tinycobol/lib/htcobolrt.rc

72 lines
2.3 KiB
Plaintext

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winver.h>
#define VER_FILEVERSION 0,73,0,0
#define VER_FILEVERSION_STR "0.73.0"
#define VER_BUILDDATE_STR "2012/02/08"
#define VER_LEGALCOPYRIGHT_STR "Copyright 1999-2004 by Rildo Pragana"
//#define VER_COMMENT_STR ""
#define VER_FILEDESCRIPTION_STR "TinyCOBOL run-time DLL"
#define VER_INTERNALNAME_STR "TinyCOBOL"
#define VER_ORIGINALFILENAME_STR "htcobol.dll"
#define VER_WWW_STR "http://tiny-cobol.sourceforge.net"
#define VER_COMPANYNAME_STR "The TinyCOBOL Project"
#define VER_LICENSE_STR "This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License;see www.gnu.org/copyleft/lesser.html."
#define VER_PRODUCTNAME_STR "TinyCOBOL"
#define VER_PRODUCTVERSION 0,73,0,0
#define VER_PRODUCTVERSION_STR "0.73.0"
#define VER_FILETYPE VFT_DLL
#ifndef VER_FILETYPE
#define VER_FILETYPE VFT_APP
#endif
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
//#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_SPECIALBUILD|VER_PRERELEASE|VER_DEBUG|VER_PATCHED)
#define VER_FILEFLAGS 0
#define VER_FILEOS VOS__WINDOWS32
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VER_FILEFLAGSMASK
FILEFLAGS VER_FILEFLAGS
FILEOS VER_FILEOS
FILETYPE VER_FILETYPE
FILESUBTYPE VER_FILESUBTYPE
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
/* language ID = U.S. English, char set = Windows, Multilingual */
BEGIN
#ifdef VER_COMMENT_STR
VALUE "Comments", VER_COMMENT_STR
#endif
VALUE "CompanyName", VER_COMPANYNAME_STR
VALUE "License", VER_LICENSE_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", VER_INTERNALNAME_STR
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "ProductName", VER_PRODUCTNAME_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
VALUE "Build Date", VER_BUILDDATE_STR
VALUE "WWW", VER_WWW_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END