2009-05-12 14:15:48 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: PAINT for ReactOS
|
|
|
|
* LICENSE: LGPL
|
2009-10-21 15:44:31 +00:00
|
|
|
* FILE: base/applications/paint/rsrc.rc
|
2009-05-12 14:15:48 +00:00
|
|
|
* PURPOSE: Managing the resources
|
|
|
|
* PROGRAMMERS: Benedikt Freisen
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES *********************************************************/
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include "definitions.h"
|
|
|
|
|
|
|
|
#include "icons.rc"
|
|
|
|
|
|
|
|
// cp 1252 languages
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#include "lang/en-GB.rc"
|
|
|
|
#include "lang/en-US.rc"
|
2009-05-14 16:22:48 +00:00
|
|
|
#include "lang/es-ES.rc"
|
2009-09-10 04:02:22 +00:00
|
|
|
#include "lang/eu-ES.rc"
|
2009-05-12 14:15:48 +00:00
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#include "lang/it-IT.rc"
|
2009-09-03 15:05:10 +00:00
|
|
|
#include "lang/ja-JP.rc"
|
2009-05-19 16:06:10 +00:00
|
|
|
#include "lang/nl-NL.rc"
|
|
|
|
#include "lang/no-NO.rc"
|
2009-05-14 16:22:48 +00:00
|
|
|
#include "lang/pl-PL.rc"
|
2009-05-12 14:15:48 +00:00
|
|
|
#include "lang/pt-BR.rc"
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
// cp 1250 languages
|
|
|
|
#include "lang/cs-CZ.rc"
|
2009-11-01 21:31:21 +00:00
|
|
|
#include "lang/hu-HU.rc"
|
2009-05-19 16:06:10 +00:00
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#include "lang/sk-SK.rc"
|
2009-05-12 14:15:48 +00:00
|
|
|
// cp 1251 languages
|
2009-08-27 00:11:01 +00:00
|
|
|
#include "lang/bg-BG.rc"
|
2009-05-14 09:00:03 +00:00
|
|
|
#include "lang/ru-RU.rc"
|
2009-05-12 14:15:48 +00:00
|
|
|
#include "lang/uk-UA.rc"
|
|
|
|
|
|
|
|
//
|
|
|
|
// SUPPORT FOR WINDOWS XP THEMES:
|
|
|
|
// THIS WILL MAKE THE PROGRAM USE THE COMMON CONTROLS
|
|
|
|
// LIBRARY VERSION 6.0 (IF IT IS AVAILABLE)
|
|
|
|
//
|
2009-11-09 07:13:48 +00:00
|
|
|
#ifdef _AMD64_
|
|
|
|
1 24 "paint.exe.amd64.manifest"
|
|
|
|
#elif _X86_
|
2009-05-12 14:15:48 +00:00
|
|
|
1 24 "paint.exe.manifest"
|
2009-11-09 07:13:48 +00:00
|
|
|
#endif
|
|
|
|
|