Microsoft SDK for Java

execute_java_dynamic_methodV

Invokes a Java dynamic method. This method is equivalent to the execute_java_dynamic_method, except it returns a 64-bit value instead of a 32-bit long, and accepts a va_list argument list as a parameter.

Syntax

int64_t __cdecl execute_java_dynamic_methodV(ExecEnv *ee, HObject *obj, const char *method_name, const char *signature, va_list args);

Return Value

A 64-bit value.

Parameters

*ee The placeholder for the execution environment, which is not needed by the Microsoft VM. Set this parameter to NULL.
*obj The address to the Java object containing the method.
*method_name The name of the method to be called.
*signature The types of parameters and return type of the method.
args Additional arguments.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.