Allocates a new Java object and invokes a constructor.
HObject* __cdecl execute_java_constructor(ExecEnv *ee, char *classname, ClassClass *cb, char *signature);
*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. V is the return type for all constructors. V is automatically appended and should not be specified. |