source: vendor/gcc/current/libjava/include/java-props.h

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 755 bytes
Line 
1// java-props.h - Properties -*- c++ -*-
2
3/* Copyright (C) 1999 Free Software Foundation
4
5 This file is part of libgcj.
6
7This software is copyrighted work licensed under the terms of the
8Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9details. */
10
11#ifndef __JAVA_PROPS_H__
12#define __JAVA_PROPS_H__
13
14typedef struct
15{
16 char *key;
17 size_t key_length;
18 char *value;
19 size_t value_length;
20} property_pair;
21
22// Set to NULL-terminated list of properties set at compile time.
23extern const char **_Jv_Compiler_Properties;
24
25// The JAR file to add to the beginning of java.class.path.
26extern const char *_Jv_Jar_Class_Path;
27
28// Properties taken from the user's environment.
29extern property_pair *_Jv_Environment_Properties;
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.