summaryrefslogtreecommitdiff
path: root/java/jni/ZT1_jniutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'java/jni/ZT1_jniutils.cpp')
-rw-r--r--java/jni/ZT1_jniutils.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/java/jni/ZT1_jniutils.cpp b/java/jni/ZT1_jniutils.cpp
new file mode 100644
index 00000000..aae73326
--- /dev/null
+++ b/java/jni/ZT1_jniutils.cpp
@@ -0,0 +1,35 @@
+#include "ZT1_jniutils.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+jobject newArrayList(JNIEnv *env)
+{
+ return NULL;
+}
+
+jobject appendItemToArrayList(JNIEnv *env, jobject object)
+{
+ return NULL;
+}
+
+jobject newIPV6Address(JNIEnv *env, char *addr)
+{
+ return NULL;
+}
+
+jobject newIPV4Address(JNIEnv *env, char *addr)
+{
+ return NULL;
+}
+
+jobject newMulticastGroup(JNIEnv *env, const ZT1_MulticastGroup &mc)
+{
+ return NULL;
+}
+
+#ifdef __cplusplus
+}
+#endif \ No newline at end of file