2004-11-21 21:02:04 +00:00
|
|
|
/*
|
2008-04-25 15:40:31 +00:00
|
|
|
* ReactOS Calc (global resource file)
|
2004-11-21 21:02:04 +00:00
|
|
|
*
|
2008-04-25 15:40:31 +00:00
|
|
|
* Copyright 2007, Carlo Bramini
|
2004-11-21 21:02:04 +00:00
|
|
|
*
|
2008-04-25 15:40:31 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
2004-11-21 21:02:04 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2008-04-25 15:40:31 +00:00
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2004-11-21 21:02:04 +00:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-10-27 10:34:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-11-21 21:02:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
2008-04-25 15:40:31 +00:00
|
|
|
|
2004-11-21 21:02:04 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
2008-04-25 15:40:31 +00:00
|
|
|
#ifndef IDC_STATIC
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
#endif
|
|
|
|
|
2009-04-17 21:35:07 +00:00
|
|
|
#ifndef DS_SHELLFONT
|
|
|
|
#define DS_SHELLFONT DS_SETFONT|DS_FIXEDSYS
|
|
|
|
#endif
|
|
|
|
|
2008-04-25 15:40:31 +00:00
|
|
|
// Common resources
|
|
|
|
|
2007-07-18 13:51:37 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2008-04-25 15:40:31 +00:00
|
|
|
// Icons
|
|
|
|
|
|
|
|
IDI_CALC_BIG ICON DISCARDABLE "res/calc.ico"
|
|
|
|
IDI_CALC_SMALL ICON DISCARDABLE "res/calc_sm.ico"
|
|
|
|
|
|
|
|
// Bitmaps
|
|
|
|
|
|
|
|
IDB_BITMAP_ROS BITMAP DISCARDABLE "res/ROS_logo.bmp"
|
|
|
|
|
2006-01-14 17:59:59 +00:00
|
|
|
|
2008-05-05 13:09:49 +00:00
|
|
|
#include "lang/bg-BG.rc"
|
2008-06-29 20:36:47 +00:00
|
|
|
#include "lang/cs-CZ.rc"
|
2006-11-27 19:55:14 +00:00
|
|
|
#include "lang/de-DE.rc"
|
2009-01-30 08:19:51 +00:00
|
|
|
#include "lang/el-GR.rc"
|
2008-12-18 12:26:33 +00:00
|
|
|
#include "lang/en-US.rc"
|
2006-11-27 19:55:14 +00:00
|
|
|
#include "lang/es-ES.rc"
|
2009-01-24 17:56:31 +00:00
|
|
|
#include "lang/fr-FR.rc"
|
2006-11-27 19:55:14 +00:00
|
|
|
#include "lang/it-IT.rc"
|
2010-10-17 12:47:02 +00:00
|
|
|
#include "lang/ja-JP.rc"
|
2008-07-09 08:32:45 +00:00
|
|
|
#include "lang/ko-KR.rc"
|
2008-05-06 17:54:08 +00:00
|
|
|
#include "lang/nl-NL.rc"
|
2008-12-18 12:26:33 +00:00
|
|
|
#include "lang/no-NO.rc"
|
2007-04-18 15:21:29 +00:00
|
|
|
#include "lang/pl-PL.rc"
|
2009-04-24 23:47:00 +00:00
|
|
|
#include "lang/ro-RO.rc"
|
2006-11-27 19:55:14 +00:00
|
|
|
#include "lang/ru-RU.rc"
|
2007-07-18 13:51:37 +00:00
|
|
|
#include "lang/sk-SK.rc"
|
2008-12-18 12:26:33 +00:00
|
|
|
#include "lang/th-TH.rc"
|
2006-11-27 19:55:14 +00:00
|
|
|
#include "lang/uk-UA.rc"
|