summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--java/jni/BluetoothEvent.cxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/jni/BluetoothEvent.cxx b/java/jni/BluetoothEvent.cxx
index 9f6b9720..3f03e92a 100644
--- a/java/jni/BluetoothEvent.cxx
+++ b/java/jni/BluetoothEvent.cxx
@@ -2,31 +2,61 @@
jobject Java_BluetoothEvent_getType(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jstring Java_BluetoothEvent_getName(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jstring Java_BluetoothEvent_getIdentifier(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jboolean Java_BluetoothEvent_executeCallback(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return JNI_FALSE;
}
jboolean Java_BluetoothEvent_hasCallback(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return JNI_FALSE;
}
void Java_BluetoothEvent_init(JNIEnv *env, jobject obj, jobject type, jstring name,
jstring identifier, jobject parent, jobject callback,
jobject arg_data)
{
+ (void)env;
+ (void)obj;
+ (void)type;
+ (void)name;
+ (void)identifier;
+ (void)parent;
+ (void)callback;
+ (void)arg_data;
}
void Java_BluetoothEvent_delete(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
}