77 lines
2.2 KiB
C
Executable File
77 lines
2.2 KiB
C
Executable File
/*
|
|
* Copyright 2012 Adam Murdoch
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef __INCLUDE_GENERIC_H__
|
|
#define __INCLUDE_GENERIC_H__
|
|
|
|
#include <jni.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define NATIVE_VERSION 17
|
|
|
|
/*
|
|
* Marks the given result as failed, using the given error message
|
|
*/
|
|
extern void mark_failed_with_message(JNIEnv *env, const char* message, jobject result);
|
|
|
|
/*
|
|
* Marks the given result as failed, using the given error message and the current value of errno/GetLastError()
|
|
*/
|
|
extern void mark_failed_with_errno(JNIEnv *env, const char* message, jobject result);
|
|
|
|
/*
|
|
* Marks the given result as failed, using the given error message and error code
|
|
*/
|
|
extern void mark_failed_with_code(JNIEnv *env, const char* message, int error_code, const char* error_code_message, jobject result);
|
|
|
|
/*
|
|
* Converts the given Java string to a NULL terminated wchar_str. Should call free() when finished.
|
|
*
|
|
* Returns NULL on failure.
|
|
*/
|
|
extern wchar_t*
|
|
java_to_wchar(JNIEnv *env, jstring string, jobject result);
|
|
|
|
/*
|
|
* Converts the given wchar_t string to a Java string.
|
|
*
|
|
* Returns NULL on failure.
|
|
*/
|
|
extern jstring wchar_to_java(JNIEnv* env, const wchar_t* chars, size_t len, jobject result);
|
|
|
|
/*
|
|
* Converts the given Java string to a NULL terminated char string. Should call free() when finished.
|
|
*
|
|
* Returns NULL on failure.
|
|
*/
|
|
extern char* java_to_char(JNIEnv *env, jstring string, jobject result);
|
|
|
|
/*
|
|
* Converts the given NULL terminated char string to a Java string.
|
|
*
|
|
* Returns NULL on failure.
|
|
*/
|
|
extern jstring char_to_java(JNIEnv* env, const char* chars, jobject result);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|