External Call with variable parameter list

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

External Call with variable parameter list

Udo Schneider
I have to call an external function in a dll which can be called with a
variable parameter list.

Right now I'm thinking about an extension of #doesNotUnderstand: which
parses
the selector and dynamically creates the method with the right number of
arguments
and calls it.

The resulting overhead is not an issue because these are mainly
initialization functions.

Any ideas or hints?

Udo