m.mold...@gmail.com
unread,Oct 14, 2013, 5:11:14 AM10/14/13You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello,
it is possible to have more than one fetchable function in one C-Module, like in WIN/LIN GetProcAddress/dlsym:
#pragma linkage(func1, fetchable)
#pragma linkage(func2, fetchable)
#pragma linkage(func3, fetchable)
int func1(int a, int b)
{
return(a+b);
}
int func2(int a, int b)
{
return(a-b);
}
int func3(int a, int b)
{
return(a=b);
}