mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
d98f33a337
TODO: - f/w/b - settings Signed-off-by: Tavi <tavi@divested.dev>
51 lines
2.2 KiB
Diff
51 lines
2.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Sun, 17 Mar 2019 20:58:37 -0400
|
|
Subject: [PATCH] constify JNINativeMethod tables
|
|
|
|
---
|
|
nci/jni/NativeNfcManager.cpp | 2 +-
|
|
nci/jni/NativeNfcTag.cpp | 2 +-
|
|
nci/jni/NativeP2pDevice.cpp | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/nci/jni/NativeNfcManager.cpp b/nci/jni/NativeNfcManager.cpp
|
|
index 603d8ab6..8fc42860 100644
|
|
--- a/nci/jni/NativeNfcManager.cpp
|
|
+++ b/nci/jni/NativeNfcManager.cpp
|
|
@@ -1994,7 +1994,7 @@ static jbyteArray nfcManager_doGetRoutingTable(JNIEnv* e, jobject o) {
|
|
** JNI functions for android-4.0.1_r1
|
|
**
|
|
*****************************************************************************/
|
|
-static JNINativeMethod gMethods[] = {
|
|
+static const JNINativeMethod gMethods[] = {
|
|
{"doDownload", "()Z", (void*)nfcManager_doDownload},
|
|
|
|
{"initializeNativeStructure", "()Z", (void*)nfcManager_initNativeStruc},
|
|
diff --git a/nci/jni/NativeNfcTag.cpp b/nci/jni/NativeNfcTag.cpp
|
|
index d9c59953..a1eb7953 100644
|
|
--- a/nci/jni/NativeNfcTag.cpp
|
|
+++ b/nci/jni/NativeNfcTag.cpp
|
|
@@ -1739,7 +1739,7 @@ void nativeNfcTag_releaseRfInterfaceMutexLock() {
|
|
** JNI functions for Android 4.0.3
|
|
**
|
|
*****************************************************************************/
|
|
-static JNINativeMethod gMethods[] = {
|
|
+static const JNINativeMethod gMethods[] = {
|
|
{"doConnect", "(I)I", (void*)nativeNfcTag_doConnect},
|
|
{"doDisconnect", "()Z", (void*)nativeNfcTag_doDisconnect},
|
|
{"doReconnect", "()I", (void*)nativeNfcTag_doReconnect},
|
|
diff --git a/nci/jni/NativeP2pDevice.cpp b/nci/jni/NativeP2pDevice.cpp
|
|
index 23f5db41..396c6d0c 100644
|
|
--- a/nci/jni/NativeP2pDevice.cpp
|
|
+++ b/nci/jni/NativeP2pDevice.cpp
|
|
@@ -58,7 +58,7 @@ static jboolean nativeP2pDeviceDoSend(JNIEnv*, jobject, jbyteArray) {
|
|
** Description: JNI functions
|
|
**
|
|
*****************************************************************************/
|
|
-static JNINativeMethod gMethods[] = {
|
|
+static const JNINativeMethod gMethods[] = {
|
|
{"doConnect", "()Z", (void*)nativeP2pDeviceDoConnect},
|
|
{"doDisconnect", "()Z", (void*)nativeP2pDeviceDoDisconnect},
|
|
{"doTransceive", "([B)[B", (void*)nativeP2pDeviceDoTransceive},
|