B
Bit Byte
Is it possible to pass variable length parameters to a C function
exported in a DLL (i.e. using varargs.h without resorting to say passing
a delimited string to be parsed in the function)?
i.e. I want something like this:
#include <varargs.h>
CCONV foo( char* fmt, va_list args ) ;
where CCONV is the calling convention (import/export)
exported in a DLL (i.e. using varargs.h without resorting to say passing
a delimited string to be parsed in the function)?
i.e. I want something like this:
#include <varargs.h>
CCONV foo( char* fmt, va_list args ) ;
where CCONV is the calling convention (import/export)