mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
450203f8a2
Generic PC port added. It is not yet added into the main makefile. PC port should replace os2 and nt ports.
58 lines
1.2 KiB
Plaintext
58 lines
1.2 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"
|
|
VALUE "FileDescription", "GNU Midnight Commander"
|
|
VALUE "FileVersion", VERSION
|
|
VALUE "InternalName", "MC"
|
|
VALUE "LegalCopyright", "(c) Free Software Foundation"
|
|
VALUE "LegalTrademarks", "see GNU General Public License"
|
|
VALUE "OriginalFilename", "MC.EXE"
|
|
VALUE "ProductName", "GNU Midnight Commander"
|
|
VALUE "ProductVersion", VERSION
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1252
|
|
END
|
|
END
|
|
|
|
|
|
/* Icon */
|
|
0 ICON DISCARDABLE "mc_nt.ico"
|
|
|
|
#endif /* English (U.S.) resources */
|
|
|