so then explain please what the function should return
you can't do something like this (afaik):
Code:
void foo()
{
   return (void)anystuff;
}
[...]
void myvar = foo();



so writing
Code:
void foo()
{
return foo2();
}
//should be equal to
void foo()
{
foo2();
return;
}



Visit my site: www.masterq32.de