Beispiel #1
0
void JOutputStream::write(JArray<jbyte>& buffer, int offset, int count) {
	CallVoidMethod("write", "([BII)V", buffer.GetJObject(), offset, count);
}
Beispiel #2
0
int JInputStream::read(JArray<jbyte>& buffer, jint byteOffset, jint byteCount) {
	return CallIntMethod("read", "([BII)I", buffer.GetJObject(), byteOffset, byteCount);
}
Beispiel #3
0
void JOutputStream::write(JArray<jbyte>& buffer) {
	CallVoidMethod("write", "([B)V", buffer.GetJObject());
}
Beispiel #4
0
int JInputStream::read(JArray<jbyte>& buffer) {
	return CallIntMethod("read", "([B)I", buffer.GetJObject());
}