Im sorry for my englisch skills.
My problem is that AngleScript crashes every time except the script doesnt interact with my c++ functions.
"void main() { int a = 1; int b = 2; }"<-Ok
"void main() { int a = 1; int b = 2; int c = plus(a, b); }"<-Crash
plus is a function in my C++ code.
i bind with:
engine->RegisterGlobalFunction("int plus(int, int)", asFUNCTIONPR(plus, (int, int), int), asCALL_CDECL);
my C++ function:
int plus(int a, int b)
{
return a+b;
}
I Compiled AngelScript 2.22.0 with MinGW 4.6.1
Thanks for any support
Edit:
Ok i fixed the Problem!