mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
FFM build requires Java 25, Jextract 25. Generates FFM bindings during configure. JNI is default when the requirements are not met or can be forced. Presets added for maven and FFM - JNI is default selection. Enhanced Maven options will work with either JNI or FFM New Workflows for testing and maven uploads. Extensive documentation changes for java.
71 lines
2.7 KiB
C
71 lines
2.7 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* All rights reserved. *
|
|
* *
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
* the LICENSE file, which can be found at the root of the source code *
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
|
* If you do not have access to either file, you may request a copy from *
|
|
* help@hdfgroup.org. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include <jni.h>
|
|
/* Header for class hdf_hdf5lib_H5_exception */
|
|
|
|
#ifndef Included_hdf_hdf5lib_H5_exception
|
|
#define Included_hdf_hdf5lib_H5_exception
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/*
|
|
* Class: hdf_hdf5lib_exceptions_HDF5Library
|
|
* Method: H5error_off
|
|
* Signature: ()I
|
|
*
|
|
*/
|
|
JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5error_1off(JNIEnv *env, jclass clss);
|
|
|
|
/*
|
|
* Class: hdf_hdf5lib_exceptions_HDF5Library
|
|
* Method: H5error_on
|
|
* Signature: ()V
|
|
*
|
|
*/
|
|
JNIEXPORT void JNICALL Java_hdf_hdf5lib_H5_H5error_1on(JNIEnv *env, jclass clss);
|
|
|
|
/*
|
|
* Class: hdf_hdf5lib_exceptions_HDFLibraryException
|
|
* Method: printStackTrace0
|
|
* Signature: (Ljava/lang/Object;)V
|
|
*
|
|
* Call the HDF5 library to print the HDF5 error stack to 'file_name'.
|
|
*/
|
|
JNIEXPORT void JNICALL Java_hdf_hdf5lib_exceptions_HDF5LibraryException_printStackTrace0(JNIEnv *env,
|
|
jobject obj,
|
|
jstring file_name);
|
|
|
|
/*
|
|
* Class: hdf_hdf5lib_exceptions_HDFLibraryException
|
|
* Method: _getMajorErrorNumber
|
|
* Signature: ()J
|
|
*/
|
|
JNIEXPORT jlong JNICALL Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMajorErrorNumber(JNIEnv *env,
|
|
jobject obj);
|
|
|
|
/*
|
|
* Class: hdf_hdf5lib_exceptions_HDFLibraryException
|
|
* Method: _getMinorErrorNumber
|
|
* Signature: ()J
|
|
*/
|
|
JNIEXPORT jlong JNICALL Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMinorErrorNumber(JNIEnv *env,
|
|
jobject obj);
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* Included_hdf_hdf5lib_H5_exception */
|