Allocates a new Java object and invokes a constructor. This method accepts a va_list argument list as a parameter instead of ellipses.
HObject* __cdecl execute_java_constructorV(ExecEnv *ee, const char *classname, ClassClass *cb, const char *signature, va_list args);
*ee | The placeholder for the execution environment, which is not needed by the Microsoft VM. This parameter should be set to NULL. |
*classname | The name of the class if cb is NULL. Use forward slashes (/) instead of dots (.) as package delimiters. (For example, java/lang/System.) |
*cb | The address of the class object. Use NULL and provide classname if the address is not known. |
*signature | The types of parameters passed to the constructor. See execute_java_dynamic_method for a description of signature characters. The return type for all constructors, V, is automatically appended and should not be specified. |
args | Additional arguments. |