summaryrefslogtreecommitdiffstats
path: root/java/jni/BluetoothEvent.cxx
blob: 3f03e92a835c55ba9377f3458c621aa23e85812a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "BluetoothEvent.h"

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;
}