mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
fce639e14b
- Disable some resource files (mostly japanese ones) with a FIXME. They prevent us from compiling in unix due to an iconv issue. - Lower the minimum required cmake version to 2.6 - Fix browseui resource paths. svn path=/branches/cmake-bringup/; revision=50224
78 lines
2.1 KiB
Text
78 lines
2.1 KiB
Text
/*
|
|
* Top level resource file for shell stuff
|
|
*
|
|
* Copyright 1998 Juergen Schmied
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include "shlobj.h"
|
|
#include "shresdef.h"
|
|
|
|
#include "version.rc"
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
shv_accel ACCELERATORS
|
|
BEGIN
|
|
VK_F5, FCIDM_SHVIEW_REFRESH, VIRTKEY
|
|
END
|
|
|
|
/*
|
|
* This include a set of Shell32 icons,
|
|
* bitmaps and avi files. Licence's can be
|
|
* found in the corresponding directorys
|
|
*/
|
|
#include "icon_res.rc"
|
|
#include "bitmap_res.rc"
|
|
#include "avi_res.rc"
|
|
|
|
/*
|
|
* Everything specific to any language goes
|
|
* in one of the specific files.
|
|
* Note that you can and may override resources
|
|
* which also have a neutral version. This is to
|
|
* get localized bitmaps for example.
|
|
*/
|
|
#include "lang/bg-BG.rc"
|
|
#include "lang/ca-ES.rc"
|
|
#include "lang/cs-CZ.rc"
|
|
#include "lang/da-DK.rc"
|
|
#include "lang/de-DE.rc"
|
|
#include "lang/el-GR.rc"
|
|
#include "lang/en-GB.rc"
|
|
#include "lang/en-US.rc"
|
|
#include "lang/es-ES.rc"
|
|
#include "lang/fi-FI.rc"
|
|
#include "lang/fr-FR.rc"
|
|
#include "lang/hu-HU.rc"
|
|
#include "lang/it-IT.rc"
|
|
//#include "lang/ja-JP.rc" FIXME: iconv issue
|
|
#include "lang/ko-KR.rc"
|
|
#include "lang/nl-NL.rc"
|
|
#include "lang/no-NO.rc"
|
|
#include "lang/pl-PL.rc"
|
|
#include "lang/pt-BR.rc"
|
|
#include "lang/pt-PT.rc"
|
|
#include "lang/ro-RO.rc"
|
|
#include "lang/ru-RU.rc"
|
|
#include "lang/sl-SI.rc"
|
|
#include "lang/sk-SK.rc"
|
|
#include "lang/sv-SE.rc"
|
|
#include "lang/tr-TR.rc"
|
|
#include "lang/uk-UA.rc"
|
|
#include "lang/zh-CN.rc"
|
|
#include "lang/zh-TW.rc"
|