|
From: | Lloyd Dupont |
Subject: | ObjectiveC runtime question |
Date: | Thu, 19 May 2005 12:14:10 +1000 |
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?
|
[Prev in Thread] | Current Thread | [Next in Thread] |