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;
|
2005-02-23 18:36:26 +01:00
|
|
|
extern int _Jv_Properties_Count;
|
1999-10-15 18:53:41 +02:00
|
|
|
|
|
|
|
// Properties taken from the user's environment.
|
|
|
|
extern property_pair *_Jv_Environment_Properties;
|
|
|
|
|
2005-09-08 23:26:25 +02:00
|
|
|
// Module load path.
|
|
|
|
extern char *_Jv_Module_Load_Path;
|
|
|
|
|
1999-10-15 08:07:41 +02:00
|
|
|
#endif
|
|
|
|
|