Is there a portable way to pass variadic arguments from one fucntion to another variadic function?
I need to write a wrapper for a printf function, but it needs to be a member function to a class, so I can't use the preprocessor for that.
Basically, I want to turn
Thank you, that helped a bit. Unfortunately, dsHandle->Printf doesn't support that, but we can use vsprintf with a va_list to get it down to just a char*, which DOES work.