F
fred.zakity
Exec_Mem(unsigned long address)
{
void (* foo) () = void (*) () address; <-----?
foo ();
}
I understand that foo is a function pointer of type void, but what is
the right hand side of the equation - some kind of cast? Can somebody
elaborate for me?
Thanks for your help,
fred.
{
void (* foo) () = void (*) () address; <-----?
foo ();
}
I understand that foo is a function pointer of type void, but what is
the right hand side of the equation - some kind of cast? Can somebody
elaborate for me?
Thanks for your help,
fred.