Skip to content

Commit 45a1f49

Browse files
committed
Fix Pascal_RemoteVM_GetStringUTFChars export
1 parent c7e9749 commit 45a1f49

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

RemoteInput/Plugin/JVM/RemoteVM.cxx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2007,9 +2007,6 @@ void RemoteVM::process_command(ImageData* image_data) const noexcept
20072007

20082008
case RemoteVMCommand::CALL_OBJECT_METHOD:
20092009
{
2010-
fprintf(stdout, "CALL_OBJECT_METHOD\n");
2011-
fflush(stdout);
2012-
20132010
jobject result = this->ExecuteCommand(image_data, &RemoteVM::CallObjectMethod);
20142011
image_data->data_stream().write(result);
20152012
}

RemoteInput/Plugin/SimbaPlugin.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ static const char* PascalExports[] =
185185
"Pascal_RemoteVM_GetStringChars", "Function RemoteVM.GetStringChars(str: jstring): widestring; native;",
186186
"Pascal_RemoteVM_NewStringUTF", "Function RemoteVM.NewStringUTF(utf_string: string): jstring; native;",
187187
"Pascal_RemoteVM_GetStringUTFLength", "Function RemoteVM.GetStringUTFLength(str: jstring): jsize; native;",
188-
"Pascal_RemoteVM_GetStringUTFChars", "Function RemoteVM_GetStringUTFChars(str: jstring): string; native;",
188+
"Pascal_RemoteVM_GetStringUTFChars", "Function RemoteVM.GetStringUTFChars(str: jstring): string; native;",
189189
"Pascal_RemoteVM_GetArrayLength", "Function RemoteVM.GetArrayLength(arr: jarray): jsize; native;",
190190
"Pascal_RemoteVM_NewObjectArray", "Function RemoteVM.NewObjectArray(len: jsize; clazz: jclass; init: jobject): jobjectArray; native;",
191191
"Pascal_RemoteVM_NewBooleanArray", "Function RemoteVM.NewBooleanArray(len: jsize): jbooleanArray; native;",

0 commit comments

Comments
 (0)