mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
7abc8be102
Polish translation of net, telnet, diskpart, devcpux, fontext, iernonce, lsasrv, themes, arping, frag, screensavers, ctm, fontsub, WinetestsGUI and localmon. Update for dxdiag, msgina, msports, netcfgx, shell32 and syssetup.
76 lines
1.5 KiB
Text
76 lines
1.5 KiB
Text
#include <windef.h>
|
|
#include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
#include "windows.h"
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
IDB_LOGO BITMAP "Fraginator Motif Icon.bmp"
|
|
IDI_ICON ICON "icon1.ico"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION 1,3,0,0
|
|
PRODUCTVERSION 1,3,0,0
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x40004L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", " "
|
|
VALUE "FileDescription", "Fraginator"
|
|
VALUE "FileVersion", "1.03"
|
|
VALUE "InternalName", "Fraginator"
|
|
VALUE "LegalCopyright", "Copyright © 2000-2002 Rick Brewster"
|
|
VALUE "OriginalFilename", "Fraginator.exe"
|
|
VALUE "ProductName", "Fraginator"
|
|
VALUE "ProductVersion", "1.03"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
#include <reactos/manifest_exe.rc>
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
#include "lang/de-DE.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_ES_ES
|
|
#include "lang/es-ES.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_FR_FR
|
|
#include "lang/fr-FR.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_NO_NO
|
|
#include "lang/no-NO.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_PL_PL
|
|
#include "lang/pl-PL.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_RO_RO
|
|
#include "lang/ro-RO.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_SK_SK
|
|
#include "lang/sk-SK.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_UK_UA
|
|
#include "lang/uk-UA.rc"
|
|
#endif
|