jdk/src/windows/native/sun/jkernel/kernel.rc
changeset 3111 fefdeafb7ab9
child 5506 202f599c92aa
equal deleted inserted replaced
2790:e9771c308d06 3111:fefdeafb7ab9
       
     1 /*
       
     2  * Copyright 2008 - 2009 Sun Microsystems, Inc.  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.  Sun designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
       
    23  * have any 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 // English (U.S.) resources
       
   154 
       
   155 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
       
   156 #ifdef _WIN32
       
   157 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
       
   158 #pragma code_page(1252)
       
   159 #endif //_WIN32
       
   160 #include "kernel_en.rc"
       
   161 #endif	  // English resources
       
   162 
       
   163 
       
   164 #ifdef APSTUDIO_INVOKED
       
   165 /////////////////////////////////////////////////////////////////////////////
       
   166 //
       
   167 // TEXTINCLUDE
       
   168 //
       
   169 
       
   170 1 TEXTINCLUDE DISCARDABLE 
       
   171 BEGIN
       
   172     "resource.h\0"
       
   173 END
       
   174 
       
   175 2 TEXTINCLUDE DISCARDABLE 
       
   176 BEGIN
       
   177     "#include ""afxres.h""\r\n"
       
   178     "\0"
       
   179 END
       
   180 
       
   181 3 TEXTINCLUDE DISCARDABLE 
       
   182 BEGIN
       
   183     "\r\n"
       
   184     "\0"
       
   185 END
       
   186 
       
   187 #endif    // APSTUDIO_INVOKED
       
   188 
       
   189 
       
   190 #ifndef APSTUDIO_INVOKED
       
   191 /////////////////////////////////////////////////////////////////////////////
       
   192 //
       
   193 // Generated from the TEXTINCLUDE 3 resource.
       
   194 //
       
   195 
       
   196 
       
   197 /////////////////////////////////////////////////////////////////////////////
       
   198 #endif    // not APSTUDIO_INVOKED