What is void *reserved in the JNI_OnLoad function parameters?

Viewed 54

The signature of the JNI_OnLoad function is this:

jint JNI_OnLoad(JavaVM *vm, void *reserved);

What is the void *reserved parameter?

1 Answers

Although the documentation doesn't explicitly say so, this parameter is reserved for future use and should be set to NULL in all cases.

Related