Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / include / java-props.h
blob19d7106f8f22b897c0f59207ef21eebcd0159234
1 // java-props.h - Properties -*- c++ -*-
3 /* Copyright (C) 1999 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 #ifndef __JAVA_PROPS_H__
12 #define __JAVA_PROPS_H__
14 typedef struct
16 char *key;
17 size_t key_length;
18 char *value;
19 size_t value_length;
20 } property_pair;
22 // Set to NULL-terminated list of properties set at compile time.
23 extern const char **_Jv_Compiler_Properties;
24 extern int _Jv_Properties_Count;
26 // The JAR file to add to the beginning of java.class.path.
27 extern const char *_Jv_Jar_Class_Path;
29 // Properties taken from the user's environment.
30 extern property_pair *_Jv_Environment_Properties;
32 #endif