blob: 3ef4b89dc382757f0c5d048c6197dae36ad98be7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
#ifndef ECLIPSE_JNI_H
#define ECLIPSE_JNI_H
#include "eclipseUnicode.h"
#include <jni.h>
typedef struct {
int launchResult;
int runResult;
_TCHAR * errorMessage;
} JavaResults;
typedef jint (JNICALL *JNI_createJavaVM)(JavaVM **pvm, JNIEnv **env, void *args);
/* JNI Callback methods */
/* Use name mangling since we may be linking these from java with System.LoadLibrary */
#define set_exit_data Java_org_eclipse_equinox_launcher_JNIBridge__1set_1exit_1data
#define set_launcher_info Java_org_eclipse_equinox_launcher_JNIBridge__1set_1launcher_1info
#define update_splash Java_org_eclipse_equinox_launcher_JNIBridge__1update_1splash
#define show_splash Java_org_eclipse_equinox_launcher_JNIBridge__1show_1splash
#define get_splash_handle Java_org_eclipse_equinox_launcher_JNIBridge__1get_1splash_1handle
#define takedown_splash Java_org_eclipse_equinox_launcher_JNIBridge__1takedown_1splash
#ifdef __cplusplus
extern "C" {
#endif
/*
* org_eclipse_equinox_launcher_JNIBridge#_set_exit_data
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL set_exit_data(JNIEnv *, jobject, jstring, jstring);
/*
* org_eclipse_equinox_launcher_JNIBridge#_set_launcher_info
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL set_launcher_info(JNIEnv *, jobject, jstring, jstring);
/*
* org_eclipse_equinox_launcher_JNIBridge#_update_splash
* Signature: ()V
*/
JNIEXPORT void JNICALL update_splash(JNIEnv *, jobject);
/*
* org_eclipse_equinox_launcher_JNIBridge#_get_splash_handle
* Signature: ()J
*/
JNIEXPORT jlong JNICALL get_splash_handle(JNIEnv *, jobject);
/*
* org_eclipse_equinox_launcher_JNIBridge#_show_splash
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL show_splash(JNIEnv *, jobject, jstring);
/*
* org_eclipse_equinox_launcher_JNIBridge#_takedown_splash
* Signature: ()V
*/
JNIEXPORT void JNICALL takedown_splash(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
/* Start the Java VM and Wait For It to Terminate
*
* This method is responsible for starting the Java VM and for
* detecting its termination. The resulting JVM exit code should
* be returned to the main launcher, which will display a message if
* the termination was not normal.
*/
extern JavaResults* startJavaJNI( _TCHAR* libPath, _TCHAR* vmArgs[], _TCHAR* progArgs[], _TCHAR* jarFile );
extern void cleanupVM( int );
#endif