mirror of https://github.com/MidnightCommander/mc
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
|
|
#include "windows.h"
|
|
#include "winver.h"
|
|
#include "config.h"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// English (U.S.) resources
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
|
#ifdef _WIN32
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
#pragma code_page(1252)
|
|
#endif //_WIN32
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION 1,0,0,1
|
|
PRODUCTVERSION 3,0,0,1
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x40000L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", "Free Software Foundation\0"
|
|
VALUE "FileDescription", "GNU Midnight Commander\0"
|
|
VALUE "FileVersion", VERSION
|
|
VALUE "InternalName", "MC\0"
|
|
VALUE "LegalCopyright", "(c) Free Software Foundation\0"
|
|
VALUE "LegalTrademarks", "see GNU General Public License\0"
|
|
VALUE "OriginalFilename", "MC.EXE\0"
|
|
VALUE "ProductName", "GNU Midnight Commander\0"
|
|
VALUE "ProductVersion", VERSION
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1252
|
|
END
|
|
END
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Icon
|
|
//
|
|
0 ICON DISCARDABLE "mc.ico"
|
|
|
|
#endif // English (U.S.) resources
|