• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 #include <jni.h>
6 
7 /* Tell the JNI loader that JNI 1.6 (JDK7) is required */
8 JNIEXPORT
JNI_OnLoad(JavaVM * vm,void * reserved)9 jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {
10     (void)vm;
11     (void)reserved;
12     return JNI_VERSION_1_6;
13 }
14