Cant call a my java function
Hi,in the line:
env->CallIntMethodA(bonhomme,move,arg2)
I get "Access violation reading location 0x00000000"
Initialization of the jvm is working fine, I'm also able to launch the main function of my class and the function is also found by:
move = env->GetMethodID(bonhomme, "setPosition", "(DDDDZ)I");
the Arguments are initialized by:
jvalue arg2[5];
thanks in advance
Christian

