31dce76b3e
- aggiunto file .rc.
40 lines
974 B
Plaintext
40 lines
974 B
Plaintext
#include <windows.h>
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION 1,3,0,0
|
|
PRODUCTVERSION 1,3,0,0
|
|
FILEFLAGSMASK 0x3fL
|
|
FILEFLAGS 0x0L
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "FileDescription", "Hiredis Redis Client Library"
|
|
VALUE "FileVersion", "1.3.0.0"
|
|
VALUE "InternalName", "hiredis"
|
|
VALUE "OriginalFilename", "hiredis.dll"
|
|
#ifdef _DEBUG
|
|
#ifdef _WIN64
|
|
VALUE "ProductName", "Hiredis Library Debug 64-bit"
|
|
#else
|
|
VALUE "ProductName", "Hiredis Library Debug 32-bit"
|
|
#endif
|
|
#else
|
|
#ifdef _WIN64
|
|
VALUE "ProductName", "Hiredis Library Release 64-bit"
|
|
#else
|
|
VALUE "ProductName", "Hiredis Library Release 32-bit"
|
|
#endif
|
|
#endif
|
|
VALUE "ProductVersion", "1.3.0.0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 1200
|
|
END
|
|
END |