and it looks like this:
void Functions(int s)
{
s += 5;
}
then can i call it somehow in c, c++, or cocoa
something similar to
void DoSomething(int s)
{
Function* function = myfile.readFunction(Functions);
execute(function(s));
}
any help would be appreciated
thanks in advance