Assume I have a DLL that exports functions with variable arguments list like this:
int myfunc(int arg1,...)
Here "..." is a undefined number of additional arguments. Can such functions be called out of a Visual Basic application or is VB locked to functions with fixed arguments?
I'm just asking to avoid a design problem that would lock-out VB programmers...