Hey, hope anyone can help me.
I want to set a String to a name of a function.
Like this:
void f_test()
{
.......
}
function main()
{
STRING* str=str_create("");
.....
void* pFp;
pFp=f_test;
// now here must be functions to set the STRING str to the pFp name, means str="f_test". I have to get the functionsname from pFp.
}
Does anyone knows how to do it?
Last edited by Benni003; 11/14/11 13:06.