1999-10-15 08:07:41 +02:00
|
|
|
// java-props.h - Properties -*- c++ -*-
|
|
|
|
|
2000-03-07 20:55:28 +01:00
|
|
|
/* Copyright (C) 1999 Free Software Foundation
|
1999-10-15 17:42:26 +02:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
1999-10-15 08:07:41 +02:00
|
|
|
#ifndef __JAVA_PROPS_H__
|
|
|
|
#define __JAVA_PROPS_H__
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char *key;
|
|
|
|
size_t key_length;
|
|
|
|
char *value;
|
|
|
|
size_t value_length;
|
|
|
|
} property_pair;
|
|
|
|
|
1999-10-22 21:43:41 +02:00
|
|
|
// Set to NULL-terminated list of properties set at compile time.
|
|
|
|
extern const char **_Jv_Compiler_Properties;
|
1999-10-15 18:53:41 +02:00
|
|
|
|
2000-08-21 08:05:20 +02:00
|
|
|
// The JAR file to add to the beginning of java.class.path.
|
|
|
|
extern const char *_Jv_Jar_Class_Path;
|
|
|
|
|
1999-10-15 18:53:41 +02:00
|
|
|
// Properties taken from the user's environment.
|
|
|
|
extern property_pair *_Jv_Environment_Properties;
|
|
|
|
|
1999-10-15 08:07:41 +02:00
|
|
|
#endif
|
|
|
|
|