Hi

I have a function hat take a list of struct as parameter:

typedef struct _dim {
        double x;
        double y;
        double w;
        double h;
} dim;

void
foo (...) { 
        va_list args;
        ...
 }

In smalltalk I want to call this function so I have add a cCall wit variadic 
arguments:

foo [
        <cCall: 'foo' returning: #void args: #( #variadic )>
]

But it doesn't work.

Thanks for help.

        Mth




__________________________________________________
Do You Yahoo!?
En finir avec le spam? Yahoo! Mail vous offre la meilleure protection possible 
contre les messages non sollicités
http://mail.yahoo.fr Yahoo! Mail

_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to