reactos/rosapps/applications/fraginator/Fraginator.rc
Daniel Reimer 43ee605045 [FRAGINATOR]
Make the GUI version actually work by disabling wmain per ifdef which will be set only at CUI build.
Fix resources to make the text fit nicely and get rid of the RLEXT/LTEXT mess
Add German translation

svn path=/trunk/; revision=67319
2015-04-20 00:08:02 +00:00

74 lines
1.5 KiB
Plaintext

#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_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