1 /*
   2  * Copyright (c) 1998, 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 
  26 #ifndef _JAVA_PROPS_H
  27 #define _JAVA_PROPS_H
  28 
  29 #include <jni_util.h>
  30 
  31 /* The preferred native type for storing text on the current OS */
  32 #ifdef WIN32
  33 #include <tchar.h>
  34 typedef WCHAR nchar;
  35 #else
  36 typedef char nchar;
  37 #endif
  38 
  39 typedef struct {
  40     char *os_name;
  41     char *os_version;
  42     char *os_arch;
  43 
  44     nchar *tmp_dir;
  45     nchar *font_dir;
  46     nchar *user_dir;
  47 
  48     char *file_separator;
  49     char *path_separator;
  50     char *line_separator;
  51 
  52     nchar *user_name;
  53     nchar *user_home;
  54 
  55     char *language;
  56     char *format_language;
  57     char *display_language;
  58     char *script;
  59     char *format_script;
  60     char *display_script;
  61     char *country;
  62     char *format_country;
  63     char *display_country;
  64     char *variant;
  65     char *format_variant;
  66     char *display_variant;
  67     char *encoding;
  68     char *sun_jnu_encoding;
  69     char *timezone;
  70 
  71     char *printerJob;
  72     char *graphics_env;
  73     char *awt_toolkit;
  74 
  75     char *unicode_encoding;     /* The default endianness of unicode
  76                                     i.e. UnicodeBig or UnicodeLittle   */
  77 
  78     const char *cpu_isalist;    /* list of supported instruction sets */
  79 
  80     char *cpu_endian;           /* endianness of platform */
  81 
  82     char *data_model;           /* 32 or 64 bit data model */
  83 
  84     char *patch_level;          /* patches/service packs installed */
  85 
  86     char *desktop;              /* Desktop name. */
  87 
  88 } java_props_t;
  89 
  90 java_props_t *GetJavaProperties(JNIEnv *env);
  91 jstring GetStringPlatform(JNIEnv *env, nchar* str);
  92 
  93 #endif /* _JAVA_PROPS_H */