1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5#include "windows.h" 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9IDB_LOGO BITMAP "Fraginator Motif Icon.bmp" 10IDI_ICON ICON "icon1.ico" 11 12VS_VERSION_INFO VERSIONINFO 13 FILEVERSION 1,3,0,0 14 PRODUCTVERSION 1,3,0,0 15 FILEFLAGSMASK 0x3fL 16#ifdef _DEBUG 17 FILEFLAGS 0x1L 18#else 19 FILEFLAGS 0x0L 20#endif 21 FILEOS 0x40004L 22 FILETYPE 0x1L 23 FILESUBTYPE 0x0L 24BEGIN 25 BLOCK "StringFileInfo" 26 BEGIN 27 BLOCK "040904b0" 28 BEGIN 29 VALUE "CompanyName", " " 30 VALUE "FileDescription", "Fraginator" 31 VALUE "FileVersion", "1.03" 32 VALUE "InternalName", "Fraginator" 33 VALUE "LegalCopyright", "Copyright © 2000-2002 Rick Brewster" 34 VALUE "OriginalFilename", "Fraginator.exe" 35 VALUE "ProductName", "Fraginator" 36 VALUE "ProductVersion", "1.03" 37 END 38 END 39 BLOCK "VarFileInfo" 40 BEGIN 41 VALUE "Translation", 0x409, 1200 42 END 43END 44 45#include <reactos/manifest_exe.rc> 46 47/* UTF-8 */ 48#pragma code_page(65001) 49 50#ifdef LANGUAGE_DE_DE 51 #include "lang/de-DE.rc" 52#endif 53#ifdef LANGUAGE_EN_US 54 #include "lang/en-US.rc" 55#endif 56#ifdef LANGUAGE_ES_ES 57 #include "lang/es-ES.rc" 58#endif 59#ifdef LANGUAGE_FR_FR 60 #include "lang/fr-FR.rc" 61#endif 62#ifdef LANGUAGE_NO_NO 63 #include "lang/no-NO.rc" 64#endif 65#ifdef LANGUAGE_PL_PL 66 #include "lang/pl-PL.rc" 67#endif 68#ifdef LANGUAGE_RO_RO 69 #include "lang/ro-RO.rc" 70#endif 71#ifdef LANGUAGE_SK_SK 72 #include "lang/sk-SK.rc" 73#endif 74#ifdef LANGUAGE_TR_TR 75 #include "lang/tr-TR.rc" 76#endif 77#ifdef LANGUAGE_UK_UA 78 #include "lang/uk-UA.rc" 79#endif 80#ifdef LANGUAGE_ZH_HK 81 #include "lang/zh-HK.rc" 82#endif 83#ifdef LANGUAGE_ZH_TW 84 #include "lang/zh-TW.rc" 85#endif 86