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