RegisterNatives(IntPtr, JNINativeMethod[])
Registers native methods with the class specified by the clazz argument.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.AndroidJNIModule
public static int RegisterNatives(IntPtr clazz, JNINativeMethod[] methods)
Parameters
Returns
Type | Description |
|---|---|
| int | Zero on success, negative value on error. Falsely succeeds in Editor. |
Remarks
See JNINativeMethod.fnPtr for details. Additional Resources: Java Native Interface Specification (Oracle)