This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
http://java.sun.com/docs/books/jni/html/other.html | |
8.2.1 Creating jstrings from Native Strings | |
*/ | |
jstring JNI::JNU_NewStringNative(JNIEnv *env, const char *str) | |
{ | |
jstring result; | |
jbyteArray bytes = 0; | |
int len; |