1/*
2 * Copyright 2012 Hans Leidekker for CodeWeavers
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#include "wmic.h"
20
21LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
22
23#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS WMI command line"
24#define REACTOS_STR_INTERNAL_NAME     "wmic"
25#define REACTOS_STR_ORIGINAL_FILENAME "wmic.exe"
26#include <reactos/version.rc>
27
28/* UTF-8 */
29#pragma code_page(65001)
30
31#ifdef LANGUAGE_DE_DE
32    #include "lang/de-DE.rc"
33#endif
34#ifdef LANGUAGE_EN_US
35    #include "lang/en-US.rc"
36#endif
37#ifdef LANGUAGE_IT_IT
38    #include "lang/it-IT.rc"
39#endif
40#ifdef LANGUAGE_PL_PL
41    #include "lang/pl-PL.rc"
42#endif
43#ifdef LANGUAGE_RO_RO
44    #include "lang/ro-RO.rc"
45#endif
46#ifdef LANGUAGE_RU_RU
47    #include "lang/ru-RU.rc"
48#endif
49#ifdef LANGUAGE_SQ_AL
50    #include "lang/sq-AL.rc"
51#endif
52#ifdef LANGUAGE_TR_TR
53    #include "lang/tr-TR.rc"
54#endif
55#ifdef LANGUAGE_ZH_CN
56    #include "lang/zh-CN.rc"
57#endif
58#ifdef LANGUAGE_ZH_TW
59    #include "lang/zh-TW.rc"
60#endif