jdk/src/windows/native/sun/jkernel/kernel.rc
changeset 8197 e45f21c2a40b
parent 7867 f83cd8bd35c6
child 8198 aca2f99e4b52
equal deleted inserted replaced
7867:f83cd8bd35c6 8197:e45f21c2a40b
     1 /*
       
     2  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 #include "version.rc"
       
    26 
       
    27 #include "resource.h"
       
    28 #define APSTUDIO_READONLY_SYMBOLS
       
    29 #include "afxres.h"
       
    30 #undef APSTUDIO_READONLY_SYMBOLS
       
    31 
       
    32 
       
    33 /////////////////////////////////////////////////////////////////////////////
       
    34 //
       
    35 // Icon
       
    36 //
       
    37 IDI_JAVA                ICON      DISCARDABLE     "graphics\\java-icon.ico"
       
    38 IDI_MASTHEAD            BITMAP    DISCARDABLE     "graphics\\masthead.bmp"
       
    39 
       
    40 /////////////////////////////////////////////////////////////////////////////
       
    41 // Include foreign resources
       
    42 /////////////////////////////////////////////////////////////////////////////
       
    43 
       
    44 /////////////////////////////////////////////////////////////////////////////
       
    45 // Japanese resources
       
    46 
       
    47 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_JPN)
       
    48 #ifdef _WIN32
       
    49 LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
       
    50 #pragma code_page(932)
       
    51 #endif //_WIN32
       
    52 #include "kernel_ja.rc"
       
    53 #endif	  // Japanese resources
       
    54 /////////////////////////////////////////////////////////////////////////////
       
    55 
       
    56 /////////////////////////////////////////////////////////////////////////////
       
    57 // Chinese (P.R.C.) resources
       
    58 
       
    59 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_CHS)
       
    60 #ifdef _WIN32
       
    61 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
       
    62 #pragma code_page(936)
       
    63 #endif //_WIN32
       
    64 #include "kernel_zh.rc"
       
    65 #endif	  // Chinese (P.R.C.) resources
       
    66 /////////////////////////////////////////////////////////////////////////////
       
    67 
       
    68 /////////////////////////////////////////////////////////////////////////////
       
    69 // Korean resources
       
    70 
       
    71 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_KOR)
       
    72 #ifdef _WIN32
       
    73 LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
       
    74 #pragma code_page(949)
       
    75 #endif //_WIN32
       
    76 #include "kernel_ko.rc"
       
    77 #endif	  // Korean resources
       
    78 /////////////////////////////////////////////////////////////////////////////
       
    79 
       
    80 /////////////////////////////////////////////////////////////////////////////
       
    81 // Chinese (Taiwan) resources
       
    82 
       
    83 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_CHT)
       
    84 #ifdef _WIN32
       
    85 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
       
    86 #pragma code_page(950)
       
    87 #endif //_WIN32
       
    88 #include "kernel_zh_TW.rc"
       
    89 #endif	  // Chinese (Taiwan) resources
       
    90 /////////////////////////////////////////////////////////////////////////////
       
    91 
       
    92 /////////////////////////////////////////////////////////////////////////////
       
    93 // German (Germany) resources
       
    94 
       
    95 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
       
    96 #ifdef _WIN32
       
    97 LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
       
    98 #pragma code_page(1252)
       
    99 #endif //_WIN32
       
   100 #include "kernel_de.rc"
       
   101 #endif	  // German (Germany) resources
       
   102 /////////////////////////////////////////////////////////////////////////////
       
   103 
       
   104 /////////////////////////////////////////////////////////////////////////////
       
   105 // Spanish (Castilian) resources
       
   106 
       
   107 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ESP)
       
   108 #ifdef _WIN32
       
   109 LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
       
   110 #pragma code_page(1252)
       
   111 #endif //_WIN32
       
   112 #include "kernel_es.rc"
       
   113 #endif	  // Spanish (Castilian) resources
       
   114 /////////////////////////////////////////////////////////////////////////////
       
   115 
       
   116 /////////////////////////////////////////////////////////////////////////////
       
   117 // French (France) resources
       
   118 
       
   119 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
       
   120 #ifdef _WIN32
       
   121 LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
       
   122 #pragma code_page(1252)
       
   123 #endif //_WIN32
       
   124 #include "kernel_fr.rc"
       
   125 #endif	  // French (France) resources
       
   126 /////////////////////////////////////////////////////////////////////////////
       
   127 
       
   128 /////////////////////////////////////////////////////////////////////////////
       
   129 // Italian (Italy) resources
       
   130 
       
   131 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ITA)
       
   132 #ifdef _WIN32
       
   133 LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
       
   134 #pragma code_page(1252)
       
   135 #endif //_WIN32
       
   136 #include "kernel_it.rc"
       
   137 #endif	  // Italian (Italy) resources
       
   138 /////////////////////////////////////////////////////////////////////////////
       
   139 
       
   140 /////////////////////////////////////////////////////////////////////////////
       
   141 // Swedish resources
       
   142 
       
   143 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_SVE)
       
   144 #ifdef _WIN32
       
   145 LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
       
   146 #pragma code_page(1252)
       
   147 #endif //_WIN32
       
   148 #include "kernel_sv.rc"
       
   149 #endif	  // Swedish resources
       
   150 /////////////////////////////////////////////////////////////////////////////
       
   151 
       
   152 /////////////////////////////////////////////////////////////////////////////
       
   153 // Brazilian Portuguese resources
       
   154 
       
   155 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_PTB)
       
   156 #ifdef _WIN32
       
   157 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
       
   158 #pragma code_page(1252)
       
   159 #endif //_WIN32
       
   160 #include "kernel_pt_BR.rc"
       
   161 #endif    // Brazilian Portuguese resources
       
   162 /////////////////////////////////////////////////////////////////////////////
       
   163 
       
   164 /////////////////////////////////////////////////////////////////////////////
       
   165 // English (U.S.) resources
       
   166 
       
   167 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
       
   168 #ifdef _WIN32
       
   169 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
       
   170 #pragma code_page(1252)
       
   171 #endif //_WIN32
       
   172 #include "kernel_en.rc"
       
   173 #endif	  // English resources
       
   174 
       
   175 
       
   176 #ifdef APSTUDIO_INVOKED
       
   177 /////////////////////////////////////////////////////////////////////////////
       
   178 //
       
   179 // TEXTINCLUDE
       
   180 //
       
   181 
       
   182 1 TEXTINCLUDE DISCARDABLE 
       
   183 BEGIN
       
   184     "resource.h\0"
       
   185 END
       
   186 
       
   187 2 TEXTINCLUDE DISCARDABLE 
       
   188 BEGIN
       
   189     "#include ""afxres.h""\r\n"
       
   190     "\0"
       
   191 END
       
   192 
       
   193 3 TEXTINCLUDE DISCARDABLE 
       
   194 BEGIN
       
   195     "\r\n"
       
   196     "\0"
       
   197 END
       
   198 
       
   199 #endif    // APSTUDIO_INVOKED
       
   200 
       
   201 
       
   202 #ifndef APSTUDIO_INVOKED
       
   203 /////////////////////////////////////////////////////////////////////////////
       
   204 //
       
   205 // Generated from the TEXTINCLUDE 3 resource.
       
   206 //
       
   207 
       
   208 
       
   209 /////////////////////////////////////////////////////////////////////////////
       
   210 #endif    // not APSTUDIO_INVOKED