| Index: xz/src/common/common_w32res.rc
|
| ===================================================================
|
| --- xz/src/common/common_w32res.rc (revision 0)
|
| +++ xz/src/common/common_w32res.rc (revision 0)
|
| @@ -0,0 +1,53 @@
|
| +/*
|
| + * Author: Lasse Collin
|
| + *
|
| + * This file has been put into the public domain.
|
| + * You can do whatever you want with this file.
|
| + */
|
| +
|
| +#include <winresrc.h>
|
| +#include "config.h"
|
| +#define LZMA_H_INTERNAL
|
| +#define LZMA_H_INTERNAL_RC
|
| +#include "lzma/version.h"
|
| +
|
| +#ifndef MY_BUILD
|
| +# define MY_BUILD 0
|
| +#endif
|
| +#define MY_VERSION LZMA_VERSION_MAJOR,LZMA_VERSION_MINOR,LZMA_VERSION_PATCH,MY_BUILD
|
| +
|
| +#define MY_FILENAME MY_NAME MY_SUFFIX
|
| +#define MY_COMPANY "Lasse Collin and Igor Pavlov"
|
| +#define MY_COPYRIGHT "Public Domain by " MY_COMPANY
|
| +#define MY_COMMENTS "http://tukaani.org/xz/"
|
| +
|
| +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
| +VS_VERSION_INFO VERSIONINFO
|
| + FILEVERSION MY_VERSION
|
| + PRODUCTVERSION MY_VERSION
|
| + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
| + FILEFLAGS 0
|
| + FILEOS VOS_NT_WINDOWS32
|
| + FILETYPE MY_TYPE
|
| + FILESUBTYPE 0x0L
|
| +BEGIN
|
| + BLOCK "StringFileInfo"
|
| + BEGIN
|
| + BLOCK "040904b0"
|
| + BEGIN
|
| + VALUE "Comments", MY_COMMENTS
|
| + VALUE "CompanyName", MY_COMPANY
|
| + VALUE "FileDescription", MY_DESC
|
| + VALUE "FileVersion", LZMA_VERSION_STRING
|
| + VALUE "InternalName", MY_NAME
|
| + VALUE "LegalCopyright", MY_COPYRIGHT
|
| + VALUE "OriginalFilename", MY_FILENAME
|
| + VALUE "ProductName", PACKAGE_NAME
|
| + VALUE "ProductVersion", LZMA_VERSION_STRING
|
| + END
|
| + END
|
| + BLOCK "VarFileInfo"
|
| + BEGIN
|
| + VALUE "Translation", 0x409, 1200
|
| + END
|
| +END
|
|
|
| Property changes on: xz/src/common/common_w32res.rc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + native
|
|
|
|
|