diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-11-09 10:49:46 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-11-09 10:49:46 +0000 |
commit | b3bad513d7a35f4a7c4e79601c844fe8bb7d540a (patch) | |
tree | b994843acb35bbaf44163552a4b7812251933d91 /jvmaccess/inc | |
parent | c7cc872284ad625c40d39f6c05a611917e9bf78f (diff) |
INTEGRATION: CWS nojava1 (1.3.26); FILE MERGED
2004/08/16 15:20:47 cmc 1.3.26.2: #i33045# use normal -DSOLAR_JAVA
2004/08/16 14:21:40 cmc 1.3.26.1: #i33045# build jvmaccess even without java, just default to failure on javarelated stuff
Diffstat (limited to 'jvmaccess/inc')
-rw-r--r-- | jvmaccess/inc/jvmaccess/virtualmachine.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/jvmaccess/inc/jvmaccess/virtualmachine.hxx b/jvmaccess/inc/jvmaccess/virtualmachine.hxx index 722243417ce5..51308b03b990 100644 --- a/jvmaccess/inc/jvmaccess/virtualmachine.hxx +++ b/jvmaccess/inc/jvmaccess/virtualmachine.hxx @@ -2,9 +2,9 @@ * * $RCSfile: virtualmachine.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kz $ $Date: 2004-03-25 14:50:27 $ + * last change: $Author: hr $ $Date: 2004-11-09 11:49:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -65,7 +65,15 @@ #include "rtl/ref.hxx" #include "salhelper/simplereferenceobject.hxx" +#ifdef SOLAR_JAVA #include "jni.h" +#else +struct JNIEnv; +struct JavaVM; +struct JNIEnv; +typedef int jint; +typedef void* jobject; +#endif namespace jvmaccess { |