blob: 934ccac947005dfafcfda2cf9fd0dee46b855da6 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2011 Google Inc. All Rights Reserved.
#include "jni.h"
#include <stdio.h>
extern "C"
JNIEXPORT jint JNICALL Java_MyClass_bar(JNIEnv* env, jobject thisObj, jint count) {
return count + 1;
}
|