53 lines
1.3 KiB
Text
53 lines
1.3 KiB
Text
#include <windows.h>
|
|
#if (defined(WIN32) && !defined(__EMX__) && !defined(__MINGW32__))
|
|
#include <winver.h>
|
|
#endif
|
|
#define IZ_VERSION_SYMBOLS_ONLY
|
|
#include "../revision.h"
|
|
#undef IZ_VERSION_SYMBOLS_ONLY
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION Z_MAJORVER,Z_MINORVER,Z_PATCHLEVEL,0
|
|
PRODUCTVERSION Z_MAJORVER,Z_MINORVER,Z_PATCHLEVEL,0
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
#ifdef _UNICODE
|
|
BLOCK "040904B0"
|
|
#else
|
|
BLOCK "040904E4"
|
|
#endif
|
|
BEGIN
|
|
VALUE "CompanyName", IZ_COMPANY_NAME "\0"
|
|
VALUE "FileDescription", "Info-ZIP Zip for Win32 console\0"
|
|
VALUE "FileVersion", VERSION "\0"
|
|
VALUE "InternalName", "zip\0"
|
|
VALUE "LegalCopyright", "Copyright © Info-ZIP 1997 - 2008\0"
|
|
VALUE "OriginalFilename", "zip.exe\0"
|
|
VALUE "ProductName", "Zip\0"
|
|
VALUE "ProductVersion", VERSION "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
#ifdef _UNICODE
|
|
VALUE "Translation", 0x409, 1200
|
|
#else
|
|
VALUE "Translation", 0x409, 1252
|
|
#endif
|
|
END
|
|
END
|