non-working implementation of float and double.toString()

This commit is contained in:
Eric Scharff
2007-10-02 08:58:35 -06:00
parent 45dc118ab9
commit 243d62a952
3 changed files with 22 additions and 1 deletions

View File

@ -69,3 +69,10 @@ Java_java_lang_System_doMapLibraryName(JNIEnv* e, jclass, jstring name)
}
return r;
}
extern "C" JNIEXPORT jint JNICALL
Java_java_lang_Double_fillBufferWithDouble(JNIEnv *e, jclass me, jdouble val,
jbyteArray buffer, jint bufferSize) {
if (e or me or val or buffer or bufferSize) return 0;
return 0;
}