/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include "splashscreen_impl.h"
#include <jni.h>
#include <jlong_md.h>
#include <sizecalc.h>
{
return JNI_VERSION_1_2;
}
/* FIXME: safe_ExceptionOccured, why and how? */
/*
* Class: java_awt_SplashScreen
* Method: _update
* Signature: (J[IIIIII)V
*/
{
int dataSize;
if (!splash) {
return;
}
if (splash->overlayData) {
}
if (splash->overlayData) {
/* we need a copy anyway, so we'll be using GetIntArrayRegion */
&splash->overlayFormat);
}
}
/*
* Class: java_awt_SplashScreen
* Method: _isVisible
* Signature: (J)Z
*/
{
if (!splash) {
return JNI_FALSE;
}
}
/*
* Class: java_awt_SplashScreen
* Method: _getBounds
*/
{
if (!splash) {
return NULL;
}
if (!clazz) {
if (clazz) {
}
}
}
}
}
return bounds;
}
/*
* Class: java_awt_SplashScreen
* Method: _getInstance
* Signature: ()J
*/
{
return ptr_to_jlong(SplashGetInstance());
}
/*
* Class: java_awt_SplashScreen
* Method: _close
* Signature: (J)V
*/
{
if (!splash) {
return;
}
}
/*
* Class: java_awt_SplashScreen
* Method: _getImageFileName
*/
{
return NULL;
}
/* splash->fileName is of type char*, but in fact it contains jchars */
}
/*
* Class: java_awt_SplashScreen
* Method: _getImageJarName
*/
{
return NULL;
}
/* splash->jarName is of type char*, but in fact it contains jchars */
splash->jarNameLen);
}
/*
* Class: java_awt_SplashScreen
* Method: _setImageData
* Signature: (J[B)Z
*/
{
if (!splash) {
return JNI_FALSE;
}
}