1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00
committer: mfx <mfx> 1058967901 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-07-23 13:45:01 +00:00
parent ed0e3b9af4
commit f513373693
2 changed files with 2 additions and 66 deletions

View File

@ -5,7 +5,9 @@ GNUmakefile
*.img
*.map
*.raw
*.rc
*.rel
*.res
*.pdb
*.upx
.gdbinit

View File

@ -1,66 +0,0 @@
#include <winres.h>
#include "version.h"
#define VERSION_MAJOR 1
#define VERSION_MINOR 91
#define VERSION_MICRO 0
#define VERSION_STRING UPX_VERSION_STRING
#define H(v,s) ((0x ## v) << (s))
#define VERSION_HEX \
(H(VERSION_MAJOR, 16) | H(VERSION_MINOR, 8) | H(VERSION_MICRO, 0))
#if (VERSION_HEX != UPX_VERSION_HEX)
# error "version mismatch"
#endif
#if 0
#ifdef _WIN32
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#pragma code_page(1252)
#endif
#endif
//---------------------------------------------------------------------------##
// Icons
//---------------------------------------------------------------------------##
//---------------------------------------------------------------------------##
// Version
//---------------------------------------------------------------------------##
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_MICRO,0
PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_MICRO,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "The UPX Team http://upx.sf.net\0"
VALUE "FileDescription", "UPX executable packer\0"
VALUE "FileVersion", VERSION_STRING "\0"
VALUE "InternalName", "upx.exe\0"
VALUE "LegalCopyright", "© 1996-2003 Markus F.X.J. Oberhumer\0"
VALUE "OriginalFilename", "upx.exe\0"
VALUE "ProductName", "UPX\0"
VALUE "ProductVersion", VERSION_STRING "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
// vi:ts=4:et