I'm trying to write a binding from an other language to ObjectiveC
I was thinking to relay method call by using something like
objc_msg_sendv(id, SEL, ...);
 
but it's not exactely the case it's
objc_msg_sendv(id, SEL, arglist_t);
 
which mean it doesn't work like a vararg function how could I translate that?
 
I was thinking of something like:
 
myobjc_msg_send(id obj, SEL mtdh, ...)
{
    objc_msg_sendv(obj, mthd, arglist);
}
 
now the question is how to generate a arglist_t from a va_list?
or any other suggestion?
_______________________________________________
Discuss-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Reply via email to